Lab3.1: failing in trying to pull docker.io/library/python:3--no such host
Here there,
is there any registry needed on my VM before pulling image to docker.io? I am failing building docker image for lab3.1.
Below is the command:
vagrant@cp:~/app1$ sudo podman build -t simpleapp .Error message from the command:
STEP 1/4: FROM python:3
✔ docker.io/library/python:3
Trying to pull docker.io/library/python:3...
Error: error creating build container: initializing source docker://python:3: pinging container registry registry-1.docker.io: Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1.docker.io: no such hostnslookup to verify that registry-1.docker.io is accessible:
vagrant@cp:~/app1$ nslookup registry-1.docker.io
Server: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name: registry-1.docker.io
Address: 54.83.42.45
Name: registry-1.docker.io
Address: 54.242.59.189
Name: registry-1.docker.io
Address: 3.215.51.67
** server can't find registry-1.docker.io: NXDOMAIN
vagrant@cp:~/app1$
where else should I check? Thanks
Shao
Best Answer
-
Hi @caishaoping,
During the exam you will be provided with a pre-built environment with the necessary virtual instances for nodes. For additional exam related details you can examine the candidate handbook for CKAD, or additional certification exam-specific questions may be answered by the LF support team by opening a ticket at trainingsupport.linuxfoundation.org.
Regards,
-Chris0
Answers
-
Hi @caishaoping,
It seems that your custom Ubuntu distribution behaves differently than the official and the cloud distros. Name resolution is not working as expected, so I would recommend editing
/etc/resolv.confon both nodes to add a popular nameserver to fix the DNS issues.Regards,
-Chris0 -
Just wanted to follow up with update of my way of resolution to fix the issue, "netplan" was new to me. Here is what I did:
- before change:
vagrant@cp:~/app1$ cat /etc/netplan/50-vagrant.yaml
network:
version: 2
renderer: networkd
ethernets:
eth1:
addresses:
- 172.16.0.100/24Vim to chagne:
vagrant@cp:~/app1$ sudo vim /etc/netplan/50-vagrant.yamlAfter the change:
vagrant@cp:~/app1$ sudo cat /etc/netplan/50-vagrant.yaml
network:
version: 2
renderer: networkd
ethernets:
eth1:
addresses:
- 172.16.0.100/24
nameservers:
addresses: [1.1.1.1,1.0.0.1,8.8.8.8,8.8.4.4]vagrant@cp:~/app1$ sudo netplan try
Do you want to keep these settings?
Press ENTER before the timeout to accept the new configuration
Changes will revert in 115 secondsvagrant@cp:~/app1$ sudo netplan apply
vagrant@cp:~/app1$ sudo podman build -t simpleapp .
STEP 1/4: FROM python:3
✔ docker.io/library/python:3
Trying to pull docker.io/library/python:3...
Getting image source signatures
Copying blob d8092d56ded5 done
Copying blob 3e94d13e55e7 done
Copying blob 1671565cc8df done
Copying blob 53ad072f9cd1 done
Copying blob fa9c7528c685 done
Copying blob d6b983117533 done
Copying blob 102b77c1d556 done
Copying blob c65fe89c654d done
Copying blob 18db97afaa16 done
Copying config 4f9baf941f done
Writing manifest to image destination
Storing signatures
STEP 2/4: ADD simple.py /
.
.
.0 -
Hi @chrispokorni,
Yes, my VM is using Chef's 'bento/ubuntu-20.04' version '202206.03.0', will this flavor of Ubuntu give me any difference in CKAD certification testing?
As to /etc/resolv.conf, I did not have to add new nameservers, instead, I used netplan to apply changes of nameservers, will look further which resolv file is updated by netplan tool.
Thanks
Shao0
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)