helm-secrets
helm-secrets copied to clipboard
"Error no secrets found" when {values,secret}.yaml are passed in comma-separated
Passing in multiple values-files by comma-separating them works just fine in regular helm. Not so much with helm-wrapper:
$ helm-wrapper install \
-f ./helm_vars/staging/values.yaml,./helm_vars/staging/secrets.yaml \
./chart
Error no secrets found. No secret files in chart or secrets files defined
Instead you have to do:
$ helm-wrapper install \
-f ./helm_vars/staging/values.yaml -f ./helm_vars/staging/secrets.yaml \
./chart
>>>>>> Decrypt
Decrypting ./helm_vars/staging/secrets.yaml
NAME: traefik
...
I'd label this a minor issue, but thought it might be worth reporting.