helm-subenv
helm-subenv copied to clipboard
This Helm plugin allows you to substitute the environment variables specified in your helm values file with their respective values in the environment from within a CICD pipeline.
Hello ! When trying to use bash env variable define in a .env: .env ``` variables0="cool" variables1=("components3" "components3" "components3" ) variables2="notcool" ``` After reference this value in a values.yaml and...
values.yaml ``` icm: icm-as: image: repository: "${ICM_TEST_IMAGE}" ``` environment.sh ``` #!/usr/bin/env bash ICM_TEST_IMAGE="whatever" ``` After executing `source ./environment.sh` and `helm subenv -f values.yaml` the env variable is replaced with an...