Sprig list: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 33: Line 33:
           ...
           ...
</syntaxhighlight>
</syntaxhighlight>
=Functions=
==join==

Revision as of 00:23, 9 October 2020

External

Internal

Helm Patterns

Creating a list:

{{- $ExampleList := list -}}
{{- $ExampleList := list "element1" "element2" $OtherVar -}}

Appending an element:

{{- $_0 := append $ExampleList "element3" -}}

Use Cases

A sprig list can be used directly in a Helm manifest as value for a path that expects a list:

apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
        - name: example
          args: {{ .Args.CommandArgList }}
          ...

Functions

join