Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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.

-995

B.

64

C.

32 in every Kubernetes namespace

D.

64 for every service routing to pods on this node

E.

32

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: Create a PersistentVolume with storageciass: "" and hostPath: /data, and a persistentVolumeClaim requesting this PV. Then use that PVC to populate a volume in a pod

A.

Yes

B.

No

Is this the purpose of Docker Content Trust?

Solution: Enable mutual TLS between the Docker client and server.

A.

Yes

B.

No

Are these conditions sufficient for Kubernetes to dynamically provision a persistentVolume, assuming there are no limitations on the amount and type of available external storage?

Solution: A volume is defined in a pod specification with the key persistentVolume: default.

A.

Yes

B.

No

You want to create a container that is reachable from its host's network. Does this action accomplish this?

Solution:Use either EXPOSE or --publish to access the containers on the bridge network

A.

Yes

B.

No

A company's security policy specifies that development and production containers must run on separate nodes in a given Swarm cluster.

Can this be used to schedule containers to meet the security policy requirements?

Solution: label contraints

A.

Yes

B.

No

Is this statement correct?

Solution.A Dockerfile stores persistent data between deployments of a container

A.

Yes

B.

No

Can this set of commands identify the published port(s) for a container?

Solution. ‘docker port inspect", docker container inspect"

A.

Yes

B.

No

Will this command list all nodes in a swarm cluster from the command line?

Solution. ‘docker inspect nodes

A.

Yes

B.

No

You configure a local Docker engine to enforce content trust by setting the environment variable

DOCKER_CONTENT_TRUST=1.

If myorg/myimage: 1.0 is unsigned, does Docker block this command?

Solution: docker image import myorg/myimage:1.0

A.

Yes

B.

No