Use quote function instead of actual quotes

Signed-off-by: Faisal Memon <[email protected]>
This commit is contained in:
Faisal Memon
2023-03-01 11:10:08 +01:00
committed by Marco Franssen
parent 9480ab74b4
commit fe93346b66
@@ -10,11 +10,11 @@ data:
bind_port = "8081" bind_port = "8081"
trust_domain = {{ .Values.trustDomain | quote }} trust_domain = {{ .Values.trustDomain | quote }}
data_dir = "/run/spire/data" data_dir = "/run/spire/data"
log_level = "{{ .Values.logLevel }}" log_level = {{ .Values.logLevel | quote }}
# AWS requires the use of RSA. EC cryptography is not supported # AWS requires the use of RSA. EC cryptography is not supported
ca_key_type = "rsa-2048" ca_key_type = "rsa-2048"
jwt_issuer = "{{ .Values.jwtIssuer }}" jwt_issuer = {{ .Values.jwtIssuer | quote }}
default_x509_svid_ttl = "1h" default_x509_svid_ttl = "1h"
default_jwt_svid_ttl = "1h" default_jwt_svid_ttl = "1h"
@@ -53,7 +53,7 @@ data:
Notifier "k8sbundle" { Notifier "k8sbundle" {
plugin_data { plugin_data {
namespace = "{{ .Release.Namespace }}" namespace = {{ .Release.Namespace | quote }}
config_map = {{ .Values.bundleConfigMap | quote }} config_map = {{ .Values.bundleConfigMap | quote }}
} }
} }