100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
CKAD Code Exam Questions & Answers 2024/2025 $9.49   Add to cart

Exam (elaborations)

CKAD Code Exam Questions & Answers 2024/2025

 5 views  0 purchase
  • Course
  • CKAD Code
  • Institution
  • CKAD Code

CKAD Code Exam Questions & Answers 2024/2025 Equality-based label requirement - ANSWERS=,==,!= Set-based label requirements - ANSWERSin,notin,exists kubectl imperative cmds - ANSWERSscale, annotate, label, set <field>, edit, patch Using --edit to modify objects before creation -...

[Show more]

Preview 3 out of 16  pages

  • August 26, 2024
  • 16
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • CKAD Code
  • CKAD Code
avatar-seller
Bensuda
CKAD Code Exam Questions & Answers
2024/2025

Equality-based label requirement - ANSWERS=,==,!=



Set-based label requirements - ANSWERSin,notin,exists



kubectl imperative cmds - ANSWERSscale, annotate, label, set <field>, edit, patch



Using --edit to modify objects before creation - ANSWERSkubectl create --edit -f /tmp/srv.yaml



configuration file for a Pod that has the annotation imageregistry: https://hub.docker.com/ -
ANSWERSapiVersion: v1 kind: Pod metadata: name: annotations-demo annotations: imageregistry:
"https://hub.docker.com/" spec: containers: - name: nginx image: nginx:1.14.2 ports: - containerPort: 80



https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/



Field selectors, ex: filter pods by name "foo" + status.phase "Pending" - ANSWERSlet you select
Kubernetes resources based on the value of one or more resource fields with equality ops & can chain
with comma-seperated



ex: kubectl get pods --field-selector metadata.name=foo,status.phase=Pending



Deployment that creates ReplicaSet w/ 3 nginx Pods - ANSWERSapiVersion: apps/v1

kind: Deployment

metadata:

name: nginx-deployment

labels:

app: nginx

,spec:

replicas: 3

selector:

matchLabels:

app: nginx

template:

metadata:

labels:

app: nginx

spec:

containers:

- name: nginx

image: nginx:1.14.2

ports:

- containerPort: 80



https://kubernetes.io/docs/concepts/workloads/controllers/deployment/



main parts: replicas, selector, template



create Job with command, Never restart policy, 4 retrys, 3 completions, 2 parallel runs, finish in 5s -
ANSWERSapiVersion: batch/v1

kind: Job

metadata:

name: pi

spec:

template:

spec:

containers:

, - name: pi

image: perl

command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]

restartPolicy: Never

backoffLimit: 4

completions: 3

parallelism: 2

activeDeadlineSeconds: 5



main parts: spec.template.spec.containers, command, restartPolicy, backoffLimit, activeDeadlineSeconds



https://kubernetes.io/docs/concepts/workloads/controllers/job/#running-an-example-job



create CronJob w/ arg & print time every minute - ANSWERSapiVersion: batch/v1beta1

kind: CronJob

metadata:

name: hello

spec:

schedule: "*/1 * * * *"

jobTemplate:

spec:

template:

spec:

containers:

- name: hello

image: busybox

args:

- /bin/sh

- -c

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller Bensuda. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $9.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

80435 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$9.49
  • (0)
  Add to cart