helm-secrets icon indicating copy to clipboard operation
helm-secrets copied to clipboard

"Error no secrets found" when {values,secret}.yaml are passed in comma-separated

Open jacobsvante opened this issue 7 years ago • 0 comments

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.

jacobsvante avatar May 19 '18 17:05 jacobsvante