Closed mgar closed 6 years ago
I think this is ready to merge after fixing all conflicts.
@josmo , please note that you left an import from your own fork in the main.go
file. I reverted it back to use @ipedrazas code.
@mgar oh thanks! totally missed that
Currently,
--set
parses number only values as float64.This command
helm install --set long_string_value=1234567890
will result into setting1.23456789e+09
in the template.This PR adds
string_values
as a new configuration key to pass long int variables, which will be converted into string using the--set-string
helm flag.