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
The tool converts following template {{- if .Values.nodeSelector }} nodeSelector: {{ end if }}
To {% if nodeSelector is defined %} " nodeSelector: {% endif %}
The resulting out is :{} which is invalid yaml
Expected Template , to add codition to check if teh filed has length {% if nodeSelector is defined and nodeSelector|length %}" nodeSelector: {% end if %}
The text was updated successfully, but these errors were encountered:
.Values contains nodeselector:{}
The tool converts following template
{{- if .Values.nodeSelector }} nodeSelector: {{ end if }}
To
{% if nodeSelector is defined %} " nodeSelector: {% endif %}
The resulting out is
:{}
which is invalid yamlExpected Template , to add codition to check if teh filed has length
{% if nodeSelector is defined and nodeSelector|length %}" nodeSelector: {% end if %}
The text was updated successfully, but these errors were encountered: