dremio-cloud-tools icon indicating copy to clipboard operation
dremio-cloud-tools copied to clipboard

Setting `imageTag` to a number causes `helm install` to fail

Open AndyHunt66 opened this issue 3 years ago • 0 comments

If you set imageTag to something that can be interpreted as a number (e.g. 20 or 20.1 ) then helm interprets it as a number, and the comparison on line 18 in dremio.conf ( {{- if eq $.Values.imageTag "latest" }}) fails because it is comparing a number to a string.

Enclosing the number in quotes coerces it into a string and the comparison is fine.

AndyHunt66 avatar Sep 09 '22 09:09 AndyHunt66