Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Lab Helm

  1. Create Helm Chart named nginx
    • Edit replicas to 4
    • Change tag image to alpine
  2. Install chart
  3. Upgrade chart with new image 1.20.1
  4. Uninstall the chart

Important! Do not edit templates!

Solution
### Solution

1 - Create and update chart

helm create nginx
#Edit values.yaml
# repository: registry.sighup.io/workshop/nginx
# replicaCount: 4
# tag: "alpine"

2 - Install nginx

helm install nginx ./nginx

3 - Upgrade nginx

#Edit values.yaml
# tag: "1.20.1"
helm upgrade nginx ./nginx/

4 - Delete resources

helm uninstall nginx