Kubernetes Helm is interpreting the same value as true from --set but false if in values file

2.3k views Asked by At

Helm is interpreting --set developmentVolumeMapping=0 as true, but if I put developmentVolumeMapping: 0 in a values file and use this then Helm sees it as false.

1

There are 1 answers

0
turkenh On

It looks like, with "--set" you can only use "true" and "false" for boolean parameters according to the implementation.

Please also check this issue.