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
- Reads
values.yamlfrom<package-path>(a directory or a hull archive). - Prints it verbatim to stdout. No layers, no merging, no overrides.
Usage
hull show values <package-path>
Flags
Inherits the global flags.
Worked example
INPUT — test/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.