Learn how to seamlessly combine two Kubernetes Helm variables with a string in the middle for more dynamic and efficient deployments.
Helm templates provide a powerful way to dynamically generate Kubernetes manifests. String concatenation is a common requirement when crafting these templates, allowing you to build values from variables and inputs. This guide covers various techniques for string concatenation in Helm templates, empowering you to create flexible and reusable deployments.
Basic String Concatenation:
You can concatenate strings in Helm templates using the printf
function.
name: {{ printf "%s-%s" .Values.firstVariable .Values.secondVariable }}
Adding a String in Between:
To insert a string between variables, include it within the format string of the printf
function.
name: {{ printf "%s-my-string-%s" .Values.firstVariable .Values.secondVariable }}
Using with Ranges:
When using ranges, you can access the current item's values using .
and the variable name.
{{- range .Values.items }}
name: {{ printf "%s-%s" .name .value }}
{{- end }}
Ternary Operator and Concatenation: You can combine ternary operators with string concatenation for conditional logic.
name: {{ printf "%s%s" .Values.firstVariable (ternary "-suffix" "" .Values.condition) }}
Quoting Values:
For values that might need quoting (like multi-line strings), use the quote
function.
value: {{ quote .Values.multilineString }}
Remember that Helm uses Go template syntax, so refer to the Go template documentation for more advanced string manipulation techniques.
This code demonstrates string concatenation techniques in a Helm chart. It covers concatenating variables with separators, adding custom strings, iterating through lists and concatenating values, conditional concatenation based on a boolean value, and using the quote
function to preserve formatting of multiline strings. These techniques are applied to dynamically generate deployment names, labels, and environment variables.
This example demonstrates various string concatenation techniques in a Helm chart.
values.yaml:
firstVariable: "hello"
secondVariable: "world"
items:
- name: "item1"
value: "one"
- name: "item2"
value: "two"
condition: true
multilineString: |
This is a
multi-line
string.
templates/deployment.yaml:
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ printf "%s-%s" .Values.firstVariable .Values.secondVariable }}
spec:
replicas: 1
template:
metadata:
labels:
app: {{ printf "%s-my-string-%s" .Values.firstVariable .Values.secondVariable }}
spec:
containers:
- name: my-container
image: nginx:latest
env:
{{- range .Values.items }}
- name: {{ printf "%s-ENV" .name }}
value: {{ printf "%s-%s" .name .value }}
{{- end }}
- name: CONDITIONAL_SUFFIX
value: {{ printf "%s%s" .Values.firstVariable (ternary "-suffix" "" .Values.condition) }}
- name: MULTILINE_VALUE
value: {{ quote .Values.multilineString }}
Explanation:
firstVariable
and secondVariable
with a hyphen in between.items
list and creates environment variables by concatenating the item's name
and value
.firstVariable
based on the boolean value of condition
.multilineString
is quoted using the quote
function to preserve its formatting when used as an environment variable value.This example demonstrates various ways to concatenate strings in Helm charts, allowing you to dynamically generate resource names, labels, annotations, and other configuration values based on your application's needs.
printf
: While printf
offers flexibility, for simple concatenations, using the -
operator within curly braces can be more concise:
name: {{ .Values.firstVariable - .Values.secondVariable }}
printf
format string and surrounding curly braces. Unwanted spaces might lead to unexpected results. Use -
to control spacing.default
) or other error handling mechanisms to prevent template rendering failures.upper
, lower
, trim
, and regexReplace
for more advanced string manipulations within your Helm charts.This table summarizes various string concatenation techniques in Helm templates:
Method | Description | Example |
---|---|---|
Basic Concatenation | Use printf to combine strings and variables. |
name: {{ printf "%s-%s" .Values.firstVariable .Values.secondVariable }} |
Adding a String | Include the desired string within the printf format string. |
name: {{ printf "%s-my-string-%s" .Values.firstVariable .Values.secondVariable }} |
Concatenation in Ranges | Access range item values using . within the loop. |
{{- range .Values.items }} name: {{ printf "%s-%s" .name .value }} {{- end }} |
Ternary Operator | Combine ternary operators with printf for conditional concatenation. |
name: {{ printf "%s%s" .Values.firstVariable (ternary "-suffix" "" .Values.condition) }} |
Quoting Values | Use quote to handle values requiring quotes, like multi-line strings. |
value: {{ quote .Values.multilineString }} |
Note: Helm uses Go template syntax. Refer to the Go template documentation for advanced string manipulation.
Mastering string concatenation in Helm templates empowers you to create adaptable and efficient Kubernetes deployments. By leveraging the techniques outlined in this guide, you can dynamically generate values, craft reusable templates, and streamline your infrastructure management. Remember to consult the Helm and Go template documentation for advanced use cases and explore additional string manipulation functions to enhance your Helm chart development process.