Skip to main content

ankra charts

Commands to list, search, and get information about Helm charts.

ankra charts info

Get detailed information about a Helm chart. Requires either —repository flag or finding the chart in the catalog first.
Flags

ankra charts list

List available Helm charts
Flags Search for Helm charts
Flags

ankra charts template

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
Flags

ankra charts values

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 form The repository is resolved automatically when the chart name is unambiguous; pass —repository to pin it.
Flags