Question 10
Domain 1: Application Design and BuildWhich Helm command outputs the contents of the `values.yaml` file for the `bitnami/node` chart to standard output?
Correct answer: A
Explanation
`helm show values` displays a chart’s default values file to standard output. For the `bitnami/node` chart, the command is `helm show values bitnami/node`, which prints the contents of its `values.yaml` file.
Why each option is right or wrong
A. helm show values bitnami/node
Helm’s chart inspection subcommand `show values` is the documented command for printing a chart’s default `values.yaml` to standard output, and it accepts a chart reference such as `bitnami/node` directly. In this case, `helm show values bitnami/node` resolves the chart and emits its values file contents; no extra flags or file paths are required.
B. helm get values bitnami/node
C. helm template bitnami/node
D. helm inspect chart bitnami/node