- Home
- All questions
- Question 970
CKA study material · question 970 of 1000
An object was created with plain kubectl create and later applies behave unexpectedly. What was missing?
Show the answer
Answer: B. The saved configuration that apply relies on
Resources to be managed with apply should be created with apply or with create --save-config, so the last applied configuration exists for later diffs to work from.
Source: kubectl apply (Kubernetes) — Synopsis