Skip to content

Commit

Permalink
Fix multi-line string
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvolkmann committed Nov 22, 2024
1 parent 939535e commit 2252c6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ metadata:
namespace: {{ .Release.Namespace }}
type: Opaque
data:
config.yaml: {{ .Values.authenticationConfig }}
config.yaml: |-
{{ .Values.authenticationConfig | indent 4}}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apiServer:

{% if gardener_virtual_api_server_authentication_config %}
authenticationConfig: |
{{ gardener_virtual_api_server_authentication_config | to_nice_yaml(indent=2) | indent(width=4, first=false) }}
{{ gardener_virtual_api_server_authentication_config | to_nice_yaml(indent=2) | indent(width=2, first=false) }}
{% endif %}

oidc:
Expand Down

0 comments on commit 2252c6f

Please sign in to comment.