DevOpsDockerAWS
Deploying with Kubernetes Helm Charts
Simplify your Kubernetes deployments using Helm charts for reusable, configurable application packages.
Mar 27, 20269 min read6,300 views1360 words
Creating a Helm Chart
SH
| 1 | helm create my-app |
values.yaml
YAML
| 1 | replicaCount: 3 |
| 2 | image: |
| 3 | repository: my-app |
| 4 | tag: "1.0.0" |
| 5 | pullPolicy: IfNotPresent |
| 6 | service: |
| 7 | type: LoadBalancer |
| 8 | port: 80 |
Deploying
SH
| 1 | helm install my-app ./chart -f values.prod.yaml |