You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now, ktempl supports complex values declaration only via config file provided via -c, --config, config.yaml in the same dir with ktempl or /etc/ktempl/config.yaml
Complex values are:
# mapsmymap:
color: redactive: true# listsmylist:
- one
- two
- 3
It should be allowed to pass complex values using --set and dot-notation like it is done in helm
Probably for that to work it will be required to review each user-passed --set argument.
Then try and parse it into map[string]interface{} and then merge into values from the config file
The text was updated successfully, but these errors were encountered:
For now, ktempl supports complex values declaration only via config file provided via
-c
,--config
,config.yaml
in the same dir with ktempl or/etc/ktempl/config.yaml
Complex values are:
It should be allowed to pass complex values using
--set
and dot-notation like it is done in helmProbably for that to work it will be required to review each user-passed
--set
argument.Then try and parse it into
map[string]interface{}
and then merge into values from the config fileThe text was updated successfully, but these errors were encountered: