Create airflow secret as part of OSM Helm chart 62/13462/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Fri, 26 May 2023 09:10:11 +0000 (11:10 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Fri, 26 May 2023 09:10:11 +0000 (11:10 +0200)
Change-Id: Ia4c001df698d6a9b3743d30ab6507ca400cab072
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
installers/helm/osm/templates/airflow/airflow-secret.yaml [new file with mode: 0644]
installers/helm/osm/values.yaml
installers/install_ngsa.sh

diff --git a/installers/helm/osm/templates/airflow/airflow-secret.yaml b/installers/helm/osm/templates/airflow/airflow-secret.yaml
new file mode 100644 (file)
index 0000000..10c664b
--- /dev/null
@@ -0,0 +1,29 @@
+{{- if not .Values.global.oldServiceAssurance -}}
+{{- if .Values.airflow.enabled -}}
+#######################################################################################
+# Copyright ETSI Contributors and Others.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#######################################################################################
+apiVersion: v1
+kind: Secret
+type: Opaque
+metadata:
+  name: airflow-webserver-secret
+  labels:
+    {{- include "osm.labels" . | nindent 4 }}
+data:
+  webserver-secret-key: {{ randAlphaNum 32 | b64enc | quote }}
+{{- end }}
+{{- end }}
\ No newline at end of file
index 1ef7723..e018b2b 100644 (file)
@@ -65,6 +65,9 @@ global:
 
   oldServiceAssurance: false
 
+airflow:
+  enabled: true
+
 certauth:
   enabled: true
 
index 87f5daa..8f18f03 100755 (executable)
@@ -34,7 +34,6 @@ function install_airflow() {
 
     if ! helm -n osm status airflow 2> /dev/null ; then
         # if it does not exist, create secrets and install
-        kubectl -n osm create secret generic airflow-webserver-secret --from-literal="webserver-secret-key=$(python3 -c 'import secrets; print(secrets.token_hex(16))')"
         helm repo add apache-airflow https://airflow.apache.org
         helm repo update
         helm -n osm install airflow apache-airflow/airflow -f ${OSM_HELM_WORK_DIR}/airflow-values.yaml --version ${AIRFLOW_HELM_VERSION}