Helm Notable Values: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 14: Line 14:
<syntaxhighlight lang='yaml'>
<syntaxhighlight lang='yaml'>
{{ if .Values.myValue }}
{{ if .Values.myValue }}
</syntaxhighlight>
Evaluates to true:
<syntaxhighlight lang='yaml'>
{{ if empty .Values.myValue }}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 07:52, 5 January 2021

Internal

Overview

Numeric zero evaluates as follows:

myValue: 0

Evaluates to false:

{{ if .Values.myValue }}

Evaluates to true:

{{ if empty .Values.myValue }}