Skip to content

Commit df9e7c8

Browse files
authored
[patch] Fix YAML field rendering (#248)
1 parent 46d6701 commit df9e7c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cluster-applications/053-falcon-operator/templates/03-FalconNodeSensor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ spec:
1717
client_secret: "{{ .Values.falcon_operator_client_secret }}"
1818
cloud_region: "{{ .Values.falcon_operator_cloud_region }}"
1919
{{- if .Values.falcon_operator_node_sensor }}
20-
{{ .Values.falcon_operator_node_sensor | indent 2 }}
20+
{{ .Values.falcon_operator_node_sensor | toYaml | indent 2 }}
2121
{{- end }}

cluster-applications/053-falcon-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ falcon_operator_channel: certified-1.0
33
falcon_operator_cloud_region: autodiscover
44
falcon_operator_client_id: xxx
55
falcon_operator_client_secret: xxx
6-
falcon_operator_node_sensor: |
6+
falcon_operator_node_sensor:
77
node:
88
terminationGracePeriodSeconds: 30
99
falcon:

0 commit comments

Comments
 (0)