ankra helm
Commands to manage Helm chart registries and registry credentials.ankra helm credentials
Manage Helm registry credentialsankra helm credentials create
Create a Helm registry credential with username and password. The password will be prompted interactively. Example: ankra helm credentials create —name my-cred —username userankra helm credentials delete
Delete a Helm registry credentialankra helm credentials get
Get details of a Helm registry credentialankra helm credentials list
List Helm registry credentialsankra helm credentials update
Update a Helm registry credential’s username and password. The password will be prompted interactively. Example: ankra helm credentials update my-cred —username userankra helm registries
Manage Helm chart registriesankra helm registries create
Create a Helm chart registry from a spec file (-f, JSON or YAML) or directly from —name and —url. In a spec file the registry must be nested under exactly one of “helm_oci_registry” or “helm_http_registry”: {“spec”: {“helm_oci_registry”: {“name”: “my-charts”, “url”: “oci://ghcr.io/acme/charts”}}} {“spec”: {“helm_http_registry”: {“name”: “my-charts”, “url”: “https://charts.example.com”}}} A flat {“name”: …, “url”: …} file is accepted and nested automatically, inferring the registry type from the URL scheme: oci:// creates an OCI registry, http:// or https:// an HTTP chart repository. The flag form uses the same inference. Examples: ankra helm registries create -f registry-spec.json ankra helm registries create -f registry-spec.yaml ankra helm registries create —name my-charts —url oci://ghcr.io/acme/charts ankra helm registries create —name my-charts —url https://charts.example.com—credential-name my-cred —exclude-charts legacy-chart