Issue with the Service web-dash on Chapter 12
Hello,
Quick question, I followed the video on Chapter 12, and all goes well, except when trying to create a deployment via the minikube dashboard, the service keeps always on the pending state.
Any ideas what I could have done wrong ? I tried to recreate it several times using that video as a guide and it always shows the service pending. Only happens when I create via the dashboard, if I created via kubectl, all works.
`$ kubectl get all -l k8s-app=web-dash
NAME READY STATUS RESTARTS AGE
pod/web-dash-5d65954d69-m5fw9 1/1 Running 0 54s
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/web-dash LoadBalancer 10.99.88.254 8080:32478/TCP 54s
NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/web-dash 1/1 1 1 54s
NAME DESIRED CURRENT READY AGE
replicaset.apps/web-dash-5d65954d69 1 1 1 54s`
and
$ kubectl describe svc web-dash Name: web-dash Namespace: default Labels: k8s-app=web-dash Annotations: <none> Selector: k8s-app=web-dash Type: LoadBalancer IP Family Policy: SingleStack IP Families: IPv4 IP: 10.99.88.254 IPs: 10.99.88.254 Port: tcp-8080-80-z7d7t 8080/TCP TargetPort: 80/TCP NodePort: tcp-8080-80-z7d7t 32478/TCP Endpoints: 10.244.205.197:80 Session Affinity: None External Traffic Policy: Cluster Internal Traffic Policy: Cluster Events: <none>
Comments
-
Apparently my edits to this post did not take effect!
I will try to re-post it again, so it will be better to understand the issue0 -
Okay let's try again:
I followed the video on Chapter 12, and all goes well, except when trying to create a deployment via the minikube dashboard, the service keeps always on the pending state.
Any ideas what I could have done wrong ? I tried to recreate it several times using that video as a guide and it always shows the service pending. Only happens when I create via the dashboard, if I created via kubectl, all works.
When I run the command kubectl get all - l k8s-app=web-dash I can see all the "resources" part of this deployment, including the services, and the services keeps showing me a pending state for the EXTERNAL-IP:
`NAME READY STATUS RESTARTS AGE
pod/web-dash-5d65954d69-m5fw9 1/1 Running 2 15hNAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/web-dash LoadBalancer 10.99.88.254 8080:32478/TCP 15hNAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/web-dash 1/1 1 1 15hNAME DESIRED CURRENT READY AGE
replicaset.apps/web-dash-5d65954d69 1 1 1 15h
`0 -
It looks like even when creating it from the command line I get this issue as well:
$ kubectl expose deployment web-dash --type=LoadBalancer --port=8080
service/web-dash exposed$ kubectl get all -l k8s-app=web-dash
NAME READY STATUS RESTARTS AGE
pod/web-dash-5d65954d69-m5fw9 1/1 Running 2 16hNAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/web-dash LoadBalancer 10.99.209.94 8080:31271/TCP 70sNAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/web-dash 1/1 1 1 16hNAME DESIRED CURRENT READY AGE
replicaset.apps/web-dash-5d65954d69 1 1 1 16hMaybe this is an issue when using Minikube using the driver=docker ?
0 -
aha! I re-read everything !and I ended up fixing the issue!!!
Here is the deal:
For Minikube clusters on the Docker driver, the NodePort cannot be accessed from the host workstation due to limitations of the Docker networking model. In those scenarios, another application access option is via the minikube tunnel. This option allows the Service ClusterIP to be directly exposed on the host as an External IP. First expose the webserver application through a LoadBalancer Service, and then enable the tunnel:
$ kubectl expose deployment webserver --name=web-lb --type=LoadBalancer --port=8080
$ minikube tunnel
That last command did the magic !
1 -
https://minikube.sigs.k8s.io/docs/handbook/accessing/
The official documentation, which mentions this limitation.1
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 769 Linux Foundation IT Professional Programs
- 379 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 102 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 7 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 15 Cloud & Containers Training
- 2 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 4 System Administration Training
- 1 System Engineering Training
- 2 Web & Application Development Training
- 796 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 91 Storage
- 771 Linux Distributions
- 81 Debian
- 68 Fedora
- 23 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 126 Mobile Computing
- 20 Android
- 91 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 400 Off Topic
- 124 Introductions
- 32 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 705 Software Development
- 1K Software
- 406 Applications
- 182 Command Line
- 5 Compiling/Installing
- 70 Games
- 318 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)