Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam CKA topic 1 question 10 discussion

Actual exam question from CNCF's CKA
Question #: 10
Topic #: 1
[All CKA Questions]

SIMULATION -


Task -
Schedule a Pod as follows:
✑ Name: kucc8
✑ App Containers: 2
✑ Container Name/Images:
- nginx
- consul

Show Suggested Answer Hide Answer
Suggested Answer:






Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
sejar
Highly Voted 5 months, 1 week ago
hashicorp/consul:latest seems the latest image
upvoted 10 times
...
caco0516
Highly Voted 6 months, 3 weeks ago
Got this error with consul image : image "consul": rpc error: code = NotFound desc = failed to pull and unpack image "docker.io/library/consul:latest": failed to resolve reference "docker.io/library/consul:latest": docker.io/library/consul:latest: not found Warning Failed 12s (x2 over 27s) kubelet Error: ErrImagePull Normal BackOff 0s (x2 over 27s) kubelet Back-off pulling image "consul" Warning Failed 0s (x2 over 27s) kubelet Error: ImagePullBackOff
upvoted 5 times
...
cp2323
Most Recent 5 months, 3 weeks ago
yeah getting error with consul image, guessing this is quite old question
upvoted 1 times
...
namesgeo
6 months, 3 weeks ago
kubectl run kucc8 --image=nginx --dry-run=client > kucc8.yml -------------- vim kucc8.yml like this --------------- apiVersion: v1 kind: Pod metadata: name: kucc8 spec: containers: - name: nginx image: nginx - name: consul image: consul ------------------- kubectl create -f kucc8.yml
upvoted 4 times
...
bp339
10 months, 3 weeks ago
apiVersion: v1 kind: Pod metadata: name: kucc8 spec: containers: - name: nginx image: nginx - name: consul image: consul
upvoted 3 times
...
apiVersion: v1 kind: Pod metadata: creationTimestamp: null labels: run: kucc8 name: kucc8 spec: containers: - image: nginx name: kucc8 - image: consul name: consul
upvoted 2 times
sonixrw
11 months ago
- image: nginx name: nginx
upvoted 2 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...