The Kubernetes yaml shown below describes a clusterIP service.
Is this a correct statement about how this service routes requests?
Solution: Traffic sent to the IP of this service on port 8080 will be routed to port 80 in a random pod with the
label aPP: nginx.
During development of an application meant to be orchestrated by Kubernetes, you want to mount the /data
directory on your laptop into a container.
Will this strategy successfully accomplish this? Solution. Set containers. Mounts. hostBinding: /data in the container's specification.
Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry?
Solution: Manually delete all layers used by the image on the disk from the Docker Trusted Registry.
The following Docker Compose file is deployed as a stack:
Is this statement correct about this health check definition? Solution: Health checks test for app health ten seconds apart. Three failed health checks transition the
container into “unhealthy” status.