A simple, straightforward Helm chart driven entirely by values.yaml for deploying standard Kubernetes resources - scaffolded from helm create and intentionally kept close to that structure so anyone can read, understand, and maintain it without prior knowledge of the chart.
The chart is published to GitHub Container Registry as an OCI artifact. You may install it directly with your own values - no wrapper chart, no boilerplate templates required:
helm install my-release oci://ghcr.io/bonddim/helm-charts/base --values values.yamlhelm upgrade --install my-release oci://ghcr.io/bonddim/helm-charts/base --values values.yamlA minimal values.yaml to get started:
image:
repository: my-app
tag: "1.0.0"
service:
enabled: true
port: 8080
ingress:
enabled: true
className: nginx
hosts:
- host: my-app.example.com
paths:
- path: /
pathType: PrefixSee values.yaml and README.md for the full list of configurable parameters.
Contributions are welcome! Please open an issue or submit a pull request with any improvements or bug fixes.