Currently I created Helm chart for my Kubernetes resource and trying to deploy on my remote Kubernetes cluster from my local machine where I configured the helm client and kubectl. I created the Helm chart by using the following command,
helm create my-chart
And after creating I edited the image values in my-chart/values.yaml. Now I need to deploy this docker image on my remote Kubernetes cluster
My confusion
- Here my confusion is that, when I deploying do I only need to use 'helm install' command? It will deploy on my cluster?
- If I need to access the service, how I can access the result from cluster? Do I need to set cluster IP or node IP?
I am new to Helm chart with Kubernetes.
helm upgrade
? – Shudipta Sharma