This is an automated email from the ASF dual-hosted git repository.
binh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 7318787 Fix add quotes to extraConfigMaps/extraSecrets (#15633)
7318787 is described below
commit 73187871703bce22783a42db3d3cec9045ee1de2
Author: YuDorogov <[email protected]>
AuthorDate: Mon May 3 12:04:09 2021 +0700
Fix add quotes to extraConfigMaps/extraSecrets (#15633)
* add quotes to extraConfigMaps
Add quotes to extraConfigMaps
* Update values.yaml
add quotes
---
chart/values.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/chart/values.yaml b/chart/values.yaml
index 179da19..bc8cdd3 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -181,13 +181,13 @@ secret: []
extraSecrets: {}
# eg:
# extraSecrets:
-# {{ .Release.Name }}-airflow-connections:
+# '{{ .Release.Name }}-airflow-connections':
# data: |
# AIRFLOW_CONN_GCP: 'base64_encoded_gcp_conn_string'
# AIRFLOW_CONN_AWS: 'base64_encoded_aws_conn_string'
# stringData: |
# AIRFLOW_CONN_OTHER: 'other_conn'
-# {{ .Release.Name }}-other-secret-name-suffix: |
+# '{{ .Release.Name }}-other-secret-name-suffix': |
# data: |
# ...
@@ -200,7 +200,7 @@ extraSecrets: {}
extraConfigMaps: {}
# eg:
# extraConfigMaps:
-# {{ .Release.Name }}-airflow-variables:
+# '{{ .Release.Name }}-airflow-variables':
# data: |
# AIRFLOW_VAR_HELLO_MESSAGE: "Hi!"
# AIRFLOW_VAR_KUBERNETES_NAMESPACE: "{{ .Release.Namespace }}"