- Home
- All questions
- Question 481
CKA study material · question 481 of 1000
What is the risk of kubectl replace --force compared with kubectl apply?
Show the answer
Answer: B. It deletes and recreates the object, causing an outage
replace --force deletes and recreates the resource, unlike apply, which patches it in place.
Source: kubectl Quick Reference (Kubernetes) — Updating resources