I've made the use of helm ternary operator and I think it's pretty need, but it seems to be only able to return boolean values. Can I have it return any arbitrary value instead of just true or false?
This works as expected
sharedVPC: {{ true | (eq .Values.global.hyperscaler "gcp") false | quote }}
I would love to be able to do something like this
reclaimJobHours: {{ ternary (eq .Values.global.hyperscaler "aws") "36" "34" }}