Render a chart version’s Kubernetes manifests server-side, without
deploying anything - the ‘helm template’ equivalent for the Ankra catalog.The manifests are printed to stdout as a ’---’ separated multi-doc YAML
stream with a ’# Source:’ header per document, so the output pipes straight
into kubectl diff, kubeconform, or a file. Chart NOTES.txt output goes to
stderr.Values problems (bad YAML, schema violations, template errors) fail with the
exact Helm error a deploy would have produced - validate values before they
reach production:ankra charts template nginx —version 1.2.3
ankra charts template nginx —version 1.2.3 -f values.yaml
ankra charts template nginx —version 1.2.3 —release-name web —namespace edge
ankra charts template <chart_name> [flags]
Flags
Flag
Default
Description
--namespace
Release namespace for the render (default: “default”)
--release-name
Release name for the render (default: the chart name)
Print the default values document shipped inside a chart version.By default the decoded YAML is written to stdout, making it easy to pipe into
a file, edit, and feed back to ‘ankra charts template -f’:ankra charts values nginx —version 1.2.3 > values.yaml
ankra charts values nginx —version 1.2.3 -o raw # base64-encoded formThe repository is resolved automatically when the chart name is unambiguous;
pass —repository to pin it.
ankra charts values <chart_name> [flags]
Flags
Flag
Default
Description
-o, --output
Output format: yaml (decoded, default) or raw (base64)