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:
To run 2 replicas of the pod
Add the following label on the pod:
Role userUI
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 Context Anytime a team needs to run a container on Kubernetes they will need to define a pod within which to run the container. Task Please complete the following:
1.
Create a YAML formatted pod manifest
2.
/opt/KDPD00101/podl.yml to create a pod named app1 that runs a container named app1cont using image Ifccncf/arg-output with these command line arguments: -lines 56 -F
3.
Create the pod with the kubect1 command using the YAML file created in the previous step
4.
When the pod is running display summary data about the pod in JSON format using the kubect1 command and redirect the output to a file named /opt/KDPD00101/out1.json
5.
All of the files you need to work with have been created, empty, for your convenience
A. Please check explanations
B. Place Holder
CORRECT TEXT
Context
A user has reported an application is unreachable due to a failing livenessProbe .
Task
Perform the following tasks:
Find the broken pod and store its name and namespace to /opt/KDOB00401/broken.txt in the format:
The output file has already been created
1.
Store the associated error events to a file /opt/KDOB00401/error.txt, The output file has already been created. You will need to use the -o wide output specifier with your command
2.
Fix the issue.
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
Context
A container within the poller pod is hard-coded to connect the nginxsvc service on port 90 . As this port changes to 5050 an additional container needs to be added to the poller pod which adapts the container to connect to this new port. This should be realized as an ambassador container within the pod.
Task
Update the nginxsvc service to serve on port 5050. Add an HAproxy container named haproxy bound to port 90 to the poller pod and deploy the enhanced pod. Use the image haproxy and inject the configuration located at /opt/KDMC00101/haproxy.cfg, with a ConfigMap named haproxyconfig, mounted into the container so that haproxy.cfg is available at /usr/local/etc/haproxy/haproxy.cfg. Ensure that you update the args of the poller container to connect to localhost instead of nginxsvc so that the connection is correctly proxied to the new service endpoint. You must not modify the port of the endpoint in poller's args . The spec file used to create the initial poller pod is available in /opt/KDMC00101/poller.yaml
A. Please check explanations
B. Place Holder
CORRECT TEXT
Context You are tasked to create a secret and consume the secret in a pod using environment variables as follow: Task
1.
Create a secret named another-secret with a key/value pair; key1/value4
2.
Start an nginx pod named nginx-secret using container image nginx, and add an environment variable exposing the value of the secret key key1, using COOL_VARIABLE as the name for the environment variable inside the pod
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
Task:
The pod for the Deployment named nosql in the crayfish namespace fails to start because its container runs out of resources.
Update the nosql Deployment so that the Pod:
A. Please check explanations
B. Place Holder
CORRECT TEXT
Context
It is always useful to look at the resources your applications are consuming in a cluster.
Task
From the pods running in namespace cpu-stress, write the name only of the pod that is consuming the most CPU to file /opt/KDOBG030l/pod.txt, which has already been created.
A. Please check explanations
B. Place Holder
CORRECT TEXT
Task:
Update the Deployment app-1 in the frontend namespace to use the existing ServiceAccount app.
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
CORRECT TEXT
Task:
Modify the existing Deployment named broker-deployment running in namespace quetzal so that its containers.
The broker-deployment is manifest file can be found at:
A. Please check explanations
B. Place Holder