HelmCharts

On the github Repo., under Settings -> Pages, Select

This will allow it to be run as a server

Create custom helm charts

helm create myFirstChart
helm package myFirstChart
helm repo index .

Update

Test updates

Upgrade test on local

helm upgrade --install todo-service-app myrepo/todo-app -f values.yaml 

After Testing

After helm file changes

helm package todo-app
helm repo index . 

# After Git push
helm repo update 

Upgrade pod

helm upgrade --install todo-service-app myrepo/todo-app