Getting started
Prerequisites
- Helm 3.8+ (OCI support is built-in)
- A Kubernetes cluster (or OpenShift for the OpenShift variant)
kubectlconfigured to point at your cluster
Install from OCI registry
helm install my-app oci://ghcr.io/my-github-repo/helm/base-chart \
--version 1.2.0 \
-f values.yaml
Generate a values.yaml
The fastest way is to use the UI configurator — a form-based editor that outputs a ready-to-use values.yaml.
See UI configurator → Overview.
Alternatively, write your own file by following the Values reference.
Upgrade
helm upgrade my-app oci://ghcr.io/my-github-repo/helm/base-chart \
--version 1.2.0 \
-f values.yaml
Uninstall
helm uninstall my-app