Mateusz Kubaczyk

Results 23 comments of Mateusz Kubaczyk

Can you paste us the output of helmsman run with both `-verbose -debug` flags? I need to see the commands also

Assuming this #452 was created, there's a chance this case is also used in an undesired way. Can you confirm secretsFiles are values encrypted file and not k8s resources definition?

There is something that will do such job just fine: [env vars in DSF](https://github.com/Praqma/helmsman/blob/master/docs/how_to/apps/environment_vars.md) An example: ``` --- apps: my-app: enabled: $MY_APP_ENABLED secretsFiles: - "../values/[...].yaml" ``` ``` MY_APP_ENABLED=(true|false) helmsman -spec...

It sounds like something worth being added. Let me find it out. I'll get back to you to see if that's something easy to do.

Making the code ignore disabled apps when it comes to pulling and validating charts is doable, but I don't think the same applies to loading values. The code resolves absolute...

`secretsFiles` are the same things as valuesValues but they are just encrypted, so this basically is encrypted values file, not a kubernetes resource definition in yaml

Ok, let's try it another way. Show us the content of: "./secrets/tls-ingress.yaml"

At this point I might need to take a look at decrypted content of that file. Just remove any fragile parts of it.

Yes, that is what I wanted to show on the decrypted example of yours :-)

you can have multiple values files passed as encrypted in secretsFiles as long as these are properly encrypted by either hiera-eyaml or helm-secrets :-) the idea of secretsFiles is not...