A Kubernetes node is allocated a /26 CIDR block (64 unique IPs) for its address space.
If every pod on this node has exactly two containers in it, how many pods can this address space support on this node?
A. 32
B. 32 In every Kubernetes namespace
C. 64 for every service routing to pods on this node
D. 64
Seven managers are in a swarm cluster.
Is this how should they be distributed across three datacenters or availability zones?
Solution: 5-1-1
A. Yes
B. No
Which of these swarm manager configurations will cause the cluster to be in a lost quorum state?
A. 4 managers of which 2 are healthy
B. 1 manager of which 1 is healthy
C. 3 managers of which 2 are healthy
D. 5 managers of which 3 are healthy
Will this action upgrade Docker Engine CE to Docker Engine EE? Solution: Manually download the 'docker-ee' package
A. Yes
B. No
You want to provide a configuration file to a container at runtime. Does this set of Kubernetes tools and steps accomplish this? Solution: Mount the configuration file directly into the appropriate pod and container using the .spec.containers.configMounts key.
A. Yes
B. No
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.
A. Yes
B. No
Can this set of commands identify the published port(s) for a container? Solution: docker container inspect', 'docker port'
A. Yes
B. No
You are troubleshooting a Kubernetes deployment called api, and want to see the events table for this object.
Does this command display it?
Solution: kubectl logs deployment api
A. Yes
B. No
Will this configuration achieve fault tolerance for managers in a swarm? Solution: an odd number of manager nodes, totaling more than two
A. Yes
B. No
Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run -v /data:/mydata --mode readonly ubuntu'
A. Yes
B. No