DevOps · Flashcard

Which chart directory holds the manifests Helm renders?

  • Atemplates/, whose files are rendered and applied
  • Bmanifests/, which Helm does not treat specially at all
  • Cresources/, which is not a directory Helm looks for
  • Dcharts/, which holds dependency charts rather than templates

Why this is the answer

Everything under templates/ is run through the template engine and the result applied, with a few conventions layered on: files starting with an underscore are partials and are never rendered on their own, and NOTES.txt is printed rather than applied. charts/ is the dependency directory; the other two names mean nothing to Helm.

Official docs
Study in Gnoseed →