If clause in helm chart
How can I check if a variable is a boolean value "true" in helm chart? I have in Values.yaml a parameter set as: myParameter: true I don't understand well difference between: {{- if .Values.service.myParameter }} and {{- if eq .Values.service.myParameter "true" }} I want that flow goes in if clause if the parameter is set as boolean "true"