- Create Helm Chart named
nginx
- Edit
replicas
to4
- Change tag image to
alpine
- Edit
- Install chart
- Upgrade chart with new image
1.20.1
- Uninstall the chart
Important! Do not edit templates!
Solution
### Solution
helm create nginx
#Edit values.yaml
# repository: registry.sighup.io/workshop/nginx
# replicaCount: 4
# tag: "alpine"
helm install nginx ./nginx
#Edit values.yaml
# tag: "1.20.1"
helm upgrade nginx ./nginx/
helm uninstall nginx