Feature 11037 Installation of ingress controller in OSM community installer
[osm/devops.git] / installers / helm / values / airflow-values.yaml
1 #
2 #   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
5 #
6 #       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 #
14 ---
15 defaultAirflowRepository: opensourcemano/airflow
16 defaultAirflowTag: "testing-daily"
17 ingress:
18   web:
19     enabled: True
20     hosts:
21       - name: "localhost"
22     ingressClassName: nginx
23 webserverSecretKeySecretName: airflow-webserver-secret
24 webserver:
25   service:
26     type: ClusterIP
27     ports:
28       - name: airflow-ui
29         port: "{{ .Values.ports.airflowUI }}"
30         targetPort: "{{ .Values.ports.airflowUI }}"
31 extraEnv: |
32   - name: AIRFLOW__API__AUTH_BACKENDS
33     value: 'airflow.api.auth.backend.basic_auth'
34   - name: AIRFLOW__LOGGING__LOGGING_LEVEL
35     value: 'INFO'
36   - name: OSMMON_DATABASE_COMMONKEY
37     valueFrom:
38       secretKeyRef:
39         name: osm-secret
40         key: OSM_DATABASE_COMMONKEY
41 # extraEnvFrom: |
42 #   - secretRef:
43 #       name: ngsa-secret
44 config:
45   core:
46     dags_folder: "/home/airflow/.local/lib/python3.10/site-packages/osm_ngsa"
47 workers:
48   persistence:
49     size: 8Gi