All articles
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
1helm create my-app

values.yaml

YAML
1replicaCount: 3
2image:
3 repository: my-app
4 tag: "1.0.0"
5 pullPolicy: IfNotPresent
6service:
7 type: LoadBalancer
8 port: 80

Deploying

SH
1helm install my-app ./chart -f values.prod.yaml