CORRECT TEXT

Task: Create a Deployment named expose in the existing ckad00014 namespace running 6 replicas of a Pod. Specify a single container using the ifccncf/nginx: 1.13.7 image Add an environment variable named NGINX_PORT with the value 8001 to the container then expose port 8001
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task:
1.
Update the Propertunel scaling configuration of the Deployment web1 in the ckad00015 namespace setting maxSurge to 2 and maxUnavailable to 59
2.
Update the web1 Deployment to use version tag 1.13.7 for the Ifconf/nginx container image.
3.
Perform a rollback of the web1 Deployment to its previous version
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task:
Update the Pod ckad00018-newpod in the ckad00018 namespace to use a NetworkPolicy allowing the Pod to send and receive traffic only to and from the pods web and db

A. Please check explanations
B. Place Holder
CORRECT TEXT

Task:
Create a Pod named nginx resources in the existing pod resources namespace.
Specify a single container using nginx:stable image.
Specify a resource request of 300m cpus and 1Gi of memory for the Pod's container.
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task
You have rolled out a new pod to your infrastructure and now you need to allow it to communicate with the web and storage pods but nothing else. Given the running pod kdsn00201 -newpod edit it to use a network policy that will allow it to send and receive traffic only to and from the web and storage pods.

A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
You are asked to prepare a Canary deployment for testing a new application release.
Task:
A Service named krill-Service in the goshark namespace points to 5 pod created by the Deployment named current-krill-deployment

A. Please check explanations
B. Place Holder
CORRECT TEXT

Given a container that writes a log file in format A and a container that converts log files from format A to format B, create a deployment that runs both containers such that the log files from the first container are converted by the second container, emitting logs in format
Task:
1.
Create a deployment named deployment-xyz in the default namespace, that:
2.
Includes a primary
3.
lfccncf/busybox:1 container, named logger-dev
4.
Includes a sidecar Ifccncf/fluentd:v0.12 container, named adapter-zen Mounts a shared volume /tmp/log on both containers, which does not persist when the pod is deleted
5.
Instructs the logger-dev
container to run the command

which should output logs to /tmp/log/input.log in plain text format, with example values:

The adapter-zen sidecar container should read /tmp/log/input.log and output the data to /tmp/log/output.* in Fluentd JSON format. Note that no knowledge of Fluentd is required to complete this task: all you will need to achieve this is to create the ConfigMap from the spec file provided at /opt/KDMC00102/fluentd-configmap.yaml , and mount that ConfigMap to /fluentd/etc in the adapter-zen sidecar container
A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
A web application requires a specific version of redis to be used as a cache.
Task
Create a pod with the following characteristics, and leave it running when complete:
1.
The pod must run in the web namespace.
2.
The namespace has already been created
3.
The name of the pod should be cache
4.
Use the Ifccncf/redis image with the 3.2 tag
5.
Expose port 6379
A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
Your application's namespace requires a specific service account to be used.
Task
Update the app-a deployment in the production namespace to run as the restrictedservice service account.
The service account has already been created.
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task
You are required to create a pod that requests a certain amount of CPU and memory, so it gets scheduled to-a node that has those resources available.
1.
Create a pod named nginx-resources in the pod-resources namespace that requests a minimum of 200m CPU and 1Gi memory for its container
2.
The pod should use the nginx image
3.
The pod-resources namespace has already been created
A. Please check explanations
B. Place Holder