Configuration as Code is a GitOps-related practice where configurations are stored as declarative
definitions in version control. Helm charts, for example, allow applications deployed on Kubernetes
to have both their container images and configuration specified declaratively.
“Configuration as Code enables teams to manage application and infrastructure configuration in
version control systems, using declarative approaches such as Kubernetes manifests or Helm charts.
This ensures repeatability, automation, and auditability.”
Thus, Helm charts are a prime example of this practice, making C correct.
Reference: GitOps Related Practices (CNCF GitOps Working Group), Configuration as Code.
===========