-
Helm cli v3
Refer this document to install helm
-
Kubernetes cluster configured.
- Add helm repository
helm repo add nginx-nilesh http://nileshbhadana.me/nginx-helm
- Installing chart
helm install nginx nginx-nilesh/nginx
-
Pull chart as tar
helm pull nginx-nilesh/nginx
-
Unzipping the tar file.
tar -xvf nginx-1.0.0.tgz
Now you can find the chart in nginx
folder and customize it using your favourite editor.
- 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
section in values file to make new changes.