LAB 3.2: Replicas of try1 pod running correctly on cp but showing as 'ImagePullBackOff' on worker
I have followed all the steps in Lab3.2 up to the point of deployment of try1 using the image from the local registry. After creating the deployment and replicas, those assigned on the cp run perfectly but those assigned on the worker node show as 'ImagePullBackOff'. I have made all the necessary changes in the registry.conf and config.toml files both on the cp and the worker.
Attached is the output of 'kubectl get pod -o wide'.
Any help will be appreciated. Thanks!
Answers
-
This is the events from describe:
0 -
Hi @gabbybamps,
I would recommend correcting the typo that causes the error, as it is indicated by the events output:
the invalid character " " in host name "http:// 10.108.149.137:5000"
That is an extra empty space between "//" and "10", which should not be there.
Your correct host name should behttp://10.108.149.137:5000Regards,
-Chris0 -
@chrispokorni so yes you are right, I was having an extra space in the hostname of the config.toml file of the worker. All works now, thanks!
0 -
I ran into the exact issue
The solution was in the worker node, the /etc/containerd/config.toml file had a typo:
The course says:
[plugins."io.containerd.grpc.v1.cri".registry.mirrors]
[plugin."io.containerd.grpc.v1.cri".registry.mirrors."*"] #<-- Add these two lines
endpoint = ["http://10.97.40.62:5000"]It should be
[plugins."io.containerd.grpc.v1.cri".registry.mirrors]
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."*"] #<-- Add these two lines
endpoint = ["http://10.97.40.62:5000"]The second plugins is missing an ‘s’
See https://github.com/containerd/containerd/issues/4938#issuecomment-851480730
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
- 976 Programming and Development
- 310 Kernel Development
- 648 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)