Using the UI configurator
The configurator is a form-based editor that generates a values.yaml without writing YAML by hand.
Open it
Click Configurator in the top nav, or go directly to the interactive configurator.
Fill in the form
- Add a workload — click
+ Add workload. Choose a type (Deployment / StatefulSet / CronJob) in the form. Each workload appears as a tab. - Fill in sections — Image, Service, Health Probes, etc. Only sections relevant to the workload type are shown.
- Show advanced — each section has a Show advanced toggle for less-common options.
- Add shared resources — ConfigMaps, Secrets, PVCs, and more appear below the workload tabs.
The values.yaml preview in the sidebar updates live as you type.
Download or copy
- Copy — copies the YAML to your clipboard.
- Download — saves
values.yamlto your machine.
Use the file with helm:
helm install my-app oci://ghcr.io/my-github-repo/helm/base-chart \
--version 1.2.0 \
-f values.yaml
Upload an existing values.yaml
Click Upload and paste an existing values.yaml. The form pre-fills from your file so you can edit it visually.
Check values results
Click 🚀 Check values Results to run helm template and preview the rendered Kubernetes YAML. This requires the backend to be running (it's automatically available on this site).
Multiple workloads
Add multiple tabs to produce a single values.yaml with deployments[], statefulsets[], and cronjobs[] all in one file — no need to merge files manually.