CORRECT TEXT

Task
Create a new deployment for running.nginx with the following parameters:
1.
Run the deployment in the kdpd00201 namespace. The namespace has already been created
2.
Name the deployment frontend and configure with 4 replicas
3.
Configure the pod with a container image of lfccncf/nginx:1.13.7
4.
Set an environment variable of NGINX__PORT=8080 and also expose that port for the container above
A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
You have been tasked with scaling an existing deployment for availability, and creating a service to expose the deployment within your infrastructure.
Task
Start with the deployment named kdsn00101-deployment which has already been deployed to the namespace kdsn00101. Edit it to:
1.
Add the func=webFrontEnd key/value label to the pod template metadata to identify the pod for the service definition
2.
Have 4 replicas
Next, create and deploy in namespace kdsn00l01 a service that accomplishes the following:
1.
Exposes the service on TCP port 8080
2.
is mapped to me pods defined by the specification of kdsn00l01-deployment
3.
Is of type NodePort
4.
Has a name of cherry
A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
A pod is running on the cluster but it is not responding.
Task
The desired behavior is to have Kubemetes restart the pod when an endpoint returns an HTTP 500 on the /healthz endpoint. The service, probe-pod, should never send traffic to the pod while it is failing. Please complete the following:
1.
The application has an endpoint, /started, that will indicate if it can accept traffic by returning an HTTP 200. If the endpoint returns an HTTP 500, the application has not yet finished initialization.
2.
The application has another endpoint /healthz that will indicate if the application is still working as expected by returning an HTTP 200. If the endpoint returns an HTTP 500 the application is no longer responsive.
3.
Configure the probe-pod pod provided to use these endpoints
4.
The probes should use port 8080
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
A deployment is falling on the cluster due to an incorrect image being specified. Locate the deployment, and fix the problem.
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

Context
As a Kubernetes application developer you will often find yourself needing to update a running application.
Task
Please complete the following:
1.
Update the app deployment in the kdpd00202 namespace with a maxSurge of 5% and a maxUnavailable of 2%
2.
Perform a rolling update of the web1 deployment, changing the Ifccncf/ngmx image version to 1.13
3.
Roll back the app deployment to the previous version
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task:
A Dockerfile has been prepared at -/human-stork/build/Dockerfile

A. Please check explanations
B. Place Holder
CORRECT TEXT

Context
Developers occasionally need to submit pods that run periodically.
Task
Follow the steps below to create a pod that will start at a predetermined time and]which runs to completion only once each time it is started:
Create a YAML formatted Kubernetes manifest /opt/KDPD00301/periodic.yaml that runs the following shell command: date in a single busybox container.
The command should run every minute and must complete within 22 seconds or be terminated oy Kubernetes. The Cronjob name and container name should both be hello
Create the resource in the above manifest and verify that the job executes successfully at least once
A. Please check explanations
B. Place Holder
CORRECT TEXT

Task:
A pod within the Deployment named buffalo-deployment and in namespace gorilla is logging errors.
Look at the logs identify errors messages.
Find errors, including User "system:serviceaccount:gorilla:default" cannot list resource "deployment" [...] in the namespace "gorilla"
The buffalo-deployment `S manifest can be found at -/prompt/escargot/buffalo- deployment.yaml
A. Please check explanations
B. Place Holder