Intermediate
Kubernetes
Q72 / 100
What is "kustomize" used for in Kubernetes configuration management?
Correct! Well done.
Incorrect.
The correct answer is B) It allows customizing raw, template-free YAML configuration files for multiple purposes (e.g. different environments), using overlays that patch a common base configuration
B
Correct Answer
It allows customizing raw, template-free YAML configuration files for multiple purposes (e.g. different environments), using overlays that patch a common base configuration
Explanation
kustomize (built into kubectl via "kubectl apply -k") lets you maintain a base set of manifests and apply environment-specific overlays/patches without templating syntax, unlike Helm's templated approach.
Progress
72/100