最佳答案
Can I do something like this in Helm yamls :
{{- if eq .Values.isCar true }} OR {{- if eq .Values.isBus true }}
# do something
{{- end }}
I understand that we can do a single if check. But how would I check for multiple conditions? Are there some operators equivalent to OR and AND?