blob: 79473aadc1b8c6829f79cb0321e2c616b52bc77e [file] [log] [blame]
garciadeblas7b53d262022-11-04 23:18:48 +01001#
Dario Faccine93311d2023-02-15 09:29:55 +01002# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
garciadeblas7b53d262022-11-04 23:18:48 +01005#
Dario Faccine93311d2023-02-15 09:29:55 +01006# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13#
garciadeblas7b53d262022-11-04 23:18:48 +010014---
garciadeblas0cdfb572022-11-11 10:24:51 +010015defaultAirflowRepository: opensourcemano/airflow
16defaultAirflowTag: "13"
garciadeblas7b53d262022-11-04 23:18:48 +010017webserverSecretKeySecretName: airflow-webserver-secret
18webserver:
19 service:
20 type: NodePort
21 ports:
22 - name: airflow-ui
23 port: "{{ .Values.ports.airflowUI }}"
24 targetPort: "{{ .Values.ports.airflowUI }}"
Dario Faccin36faaff2023-05-23 17:44:49 +020025extraEnv: |
26 - name: AIRFLOW__API__AUTH_BACKENDS
27 value: 'airflow.api.auth.backend.basic_auth'
garciadeblas7b53d262022-11-04 23:18:48 +010028extraEnvFrom: |
29 - secretRef:
30 name: ngsa-secret
garciadeblas0cdfb572022-11-11 10:24:51 +010031config:
32 core:
Dario Faccin36faaff2023-05-23 17:44:49 +020033 dags_folder: "/home/airflow/.local/lib/python3.10/site-packages/osm_ngsa"
garciadeblas7b53d262022-11-04 23:18:48 +010034