- Add helm repository
helm repo add yuvraj https://yuvraj9.github.io/custom-charts/
- Install chart
helm install nginx yuvraj/nginx
- Pull chart
helm pull yuvraj/nginx
- Unzip
tar -xvf nginx-9.3.4.tgz
Thats it now you can find the chart in nginx folder and customize it
- Nginx configurations are used by the nginx pod through configmap -
nginx-server-block
. To make changes you need to update it invalues.yaml
file of this chart otherwise it uses default values.
- Right now static site has a default html present and this is also a part of configmap, so you can update the
staticSite
in values file to make new changes.