How to set values at runtime using Named templates in helm chart?
Advertisements I created a simple helm chart using helm create nginx-test and it worked successfully Is it possible to set the values service.port at run-time by calling a template function as mentioned below helm install –set service.port="{{ include changePortNo . }}" nginx-test . The named template changePortNo was defined in _helpers.tpl >Solution : You can’t… Read More How to set values at runtime using Named templates in helm chart?