base-chart
The standard chart for Kubernetes clusters.
OCI reference
oci://ghcr.io/my-github-repo/helm/base-chart
Install
helm install my-app oci://ghcr.io/my-github-repo/helm/base-chart \
--version 1.2.0 \
-f values.yaml
Supported sections
All sections from the values reference are supported.
Minimal example
name: my-api
type: Deployment
replicaCount: 2
image:
repository: my-org/my-api
tag: "1.2.3"
service:
enabled: true
port: 80
targetPort: 8080
ingress:
enabled: true
className: nginx
hosts:
- host: api.example.com
paths:
- path: /
pathType: Prefix
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
memory: 256Mi
cpu: 200m