Study. uk . com
  1. Home
  2. All questions
  3. Question 929

CKA study material · question 929 of 1000

How is a wait for a Pod's Ready condition to become false written?

  1. --for=condition=NotReady
  2. --for=!condition=Ready
  3. --for=condition=Ready --negate
  4. --for=condition=Ready=false
Show the answer

Answer: D. --for=condition=Ready=false

A condition defaults to true, so the target value is appended after an equals sign to wait for anything else.

Source: kubectl wait (Kubernetes) — Examples

Challenge yourself on this topic → Study as cards