hull show values

hull show values prints a package’s default values.yaml unchanged.

When to use it

  • See the raw defaults a package ships, including the author’s comments.
  • Capture a starting point for your own overrides file.

What happens

  1. Reads values.yaml from <package-path> (a directory or a hull archive).
  2. Prints it verbatim to stdout. No layers, no merging, no overrides.

Usage

hull show values <package-path>

Flags

Inherits the global flags.

Worked example

INPUTtest/fixtures/simple/values.yaml on disk:

name: myapp
replicas: 3
image:
  repository: nginx
  tag: latest

OUTPUT (hull show values test/fixtures/simple) — byte-for-byte the same file, defaults and layout preserved:

name: myapp
replicas: 3
image:
  repository: nginx
  tag: latest

For the values a render actually uses after profiles and --set overrides, use hull values instead.

See also

  • show — the show command index
  • values — merged, override-aware values
  • show all — chart, values, and README together