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

8/29/2017

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.

-- Simon I
kubernetes
kubernetes-helm

1 Answer

8/29/2017

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

Please also check this issue.

-- turkenh
Source: StackOverflow