3.2.1 easyregistry.yaml pod created in worker node not cp node
Hi Guys,
I'm up to 3.2.1.
now whenever I run kubectl create [....sample.yaml....]
unlike the documentation in LAB, all pods get created in 'Worker' node hence I fail to curl to the registry or service.
here is the cmd
adminuser@lfclass-aks-cp:~/app1$ kubectl create -f easyregistry.yaml
service/nginx created
service/registry created
deployment.apps/nginx created
persistentvolumeclaim/nginx-claim0 created
deployment.apps/registry created
persistentvolumeclaim/registry-claim0 created
persistentvolume/vol1 created
persistentvolume/vol2 created
adminuser@lfclass-aks-cp:~/app1$ kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
nginx-688c5c8689-8lr72 1/1 Running 0 17s 192.168.125.75 lfclass-aks-worker
registry-7f9b448c88-frzmn 1/1 Running 0 17s 192.168.125.76 lfclass-aks-worker
see the NODE, it's using lfclass-aks-worker node. but I want to get them created in cp node.
what needs to be done in the easyregistry.yaml file so it targets to the cp not worker
and is there any global setting that i can do to avoid this situation moving forward. I still got heaps LABs to go ![]()
by the way I have done taint thing as well from 2.2.15
adminuser@lfclass-aks-cp:~/app1$ kubectl describe nodes | grep -i taint
Taints:
Taints:
Answers
-
Hi @docklander,
The nginx and registry pods can be scheduled on any desired node by adding the
nodeNameproperty to each Deployment definition - see a sample in the documentation.EDIT: The failed curl indicates that the networking between your cluster nodes may be misconfigured. In a healthy cluster, one should be able to curl a Service IP address from either one of the nodes (control plane or worker), regardless where the Pod gets scheduled. After completing the Repo configuration from Lab exercise 3.2, the container runtimes from both nodes are expected to be able to communicate with the registry, regardless of the node where it is running.
Regards,
-Chris0 -
[SOLUTION] anyone who is using Azure Linux VM, having some challenges for networking.
This is what I did and it fixed my issue.when you install k8scp.sh install canl.yaml instead of calico.yaml as below
Line 98 # kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml -> comment this
Line 99 kubectl apply -f https://projectcalico.docs.tigera.io/manifests/canal.yaml -> use thisthis makes CP node communicate with WORKER node without an issue. This has been working in 2022 July
0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 754 Linux Foundation IT Professional Programs
- 374 Cloud Engineer IT Professional Program
- 170 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 5 DevOps & GitOps IT Professional Program
- 100 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 2 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 5 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 2 Open Source Best Practice Training
- 2 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 794 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 89 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 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
- 112 Mobile Computing
- 20 Android
- 77 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 393 Off Topic
- 121 Introductions
- 182 Small Talk
- 29 Study Material
- 977 Programming and Development
- 310 Kernel Development
- 649 Software Development
- 990 Software
- 382 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 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)