Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the command to get API details for pods.
Kubernetes
kubectl explain [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'services' instead of 'pods' will show service API details.
✗ Incorrect
The command kubectl explain pods shows the API reference for pods.
2fill in blank
mediumComplete the command to get detailed info about pod spec.
Kubernetes
kubectl explain pods.[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'status' shows current state, not the spec details.
✗ Incorrect
kubectl explain pods.spec shows the specification details of a pod.
3fill in blank
hardFix the command to explain the container field inside pod spec.
Kubernetes
kubectl explain pods.spec.[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using singular 'container' causes an error because the field is plural.
✗ Incorrect
The correct field is containers (plural) inside pod spec.
4fill in blank
hardFill both blanks to explain the image field inside containers.
Kubernetes
kubectl explain pods.spec.[1].[2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'container' or 'images' will cause errors because they are incorrect field names.
✗ Incorrect
The correct path is pods.spec.containers.image to explain the image field.
5fill in blank
hardFill all three blanks to explain the resource limits inside container resources.
Kubernetes
kubectl explain pods.spec.containers.[1].[2].[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'requests' instead of 'limits' will show requested resources, not limits.
✗ Incorrect
The full path is pods.spec.containers.resources.limits.memory to explain memory limits.