Horst Gutmann
Horst Gutmann
You are absolutely correct. The issues seems to be that diff does not handle the `command` field if the local version is undefined and the live version has something in...
If it's alright with you, I think we should wait for upstream to fix that issue and see if it also fixes this one here 🙂
Thank you for testing! I wonder if we will have to support both versions at least for a certain time window.
Sounds good to me 🙂 I wonder if we could even not put that behind a flag but, I guess, some folks are already scripting their way around it which...
`helm template` also has a `--skip-tests` flag. Perhaps it's just enough that we use that flag when running `helm template` ?
Jupp, just stumbled upon it at the same time :D Perhaps I can come up with a simple sample tomorrow (if it works) :)
Using the `skipTests` property when calling `helm.template` in your wrapper code should work (at least it passes the right arguments): ``` helm.template('nginx', './charts/nginx-ingress', { skipTests: true, // values: { ......
@strowi https://github.com/grafana/tanka/pull/1329 first try 🤣
I don't think it will be possible to integrate this into the `eval` command since that is not necessarily operating on environments.
Hi 🙂 Such behavior is usually caused by some sort of dynamic rendering within Helm itself. The `randAlphaNum` values you mentioned are a good indicator for that. Tanka relies on...