This lab session will help you to understand "How to pass environment variables into the Helm Chart". There are total 2 ways by which you can pass the environment variables into the helm chart
- Using command-line interface to pass environment variables example: - helm install --set replicaCount=2 h helloworld-1 world
- Using your own values.yaml to pass environment variables example: - helm install -f myvalues.yaml helloworldrelease helloworld
Top comments (0)