Skip to content

Commit ab05674

Browse files
authored
chore: Fix listenerClass references in tests and docs (#632)
1 parent 7604406 commit ab05674

24 files changed

+35
-3
lines changed

docs/modules/airflow/examples/example-airflow-dags-configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ spec:
1919
mountPath: /dags/test_airflow_dag.py # <6>
2020
subPath: test_airflow_dag.py # <7>
2121
webservers:
22+
config:
23+
listenerClass: external-unstable
2224
roleGroups:
2325
default:
2426
envOverrides:

docs/modules/airflow/examples/example-airflow-incluster.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ spec:
1111
exposeConfig: false
1212
credentialsSecret: simple-airflow-credentials
1313
webservers:
14+
config:
15+
listenerClass: external-unstable
1416
roleGroups:
1517
default:
1618
envOverrides:

docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-logging.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ spec:
77
productVersion: 2.10.5
88
clusterConfig: {}
99
webservers:
10+
config:
11+
listenerClass: external-unstable
1012
envOverrides: &envOverrides
1113
AIRFLOW__LOGGING__REMOTE_LOGGING: "True"
1214
AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER: s3://<bucket-name>/airflow-task-logs/

docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-xcom.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ spec:
77
productVersion: 2.10.5
88
clusterConfig: {}
99
webservers:
10+
config:
11+
listenerClass: external-unstable
1012
envOverrides: &envOverrides
1113
AIRFLOW__CORE__XCOM_BACKEND: airflow.providers.common.io.xcom.backend.XComObjectStorageBackend
1214
# The connection id is obtained from the user part of the url that you will provide

docs/modules/airflow/examples/getting_started/code/airflow.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ spec:
99
clusterConfig:
1010
loadExamples: true
1111
exposeConfig: false
12-
listenerClass: external-unstable
1312
credentialsSecret: simple-airflow-credentials
1413
webservers:
14+
config:
15+
listenerClass: external-unstable
1516
roleGroups:
1617
default:
1718
replicas: 1

examples/simple-airflow-cluster-dags-cmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ spec:
9696
mountPath: /dags/test_airflow_dag.py
9797
subPath: test_airflow_dag.py
9898
webservers:
99+
config:
100+
listenerClass: external-unstable
99101
roleGroups:
100102
default:
101103
envOverrides:

examples/simple-airflow-cluster-ldap-insecure-tls.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ spec:
157157
- authenticationClass: airflow-with-ldap-insecure-tls-ldap
158158
userRegistrationRole: Admin
159159
webservers:
160+
config:
161+
listenerClass: external-unstable
160162
roleGroups:
161163
default:
162164
replicas: 1

examples/simple-airflow-cluster-ldap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,8 @@ spec:
155155
- authenticationClass: airflow-with-ldap-server-veri-tls-ldap
156156
userRegistrationRole: Admin
157157
webservers:
158+
config:
159+
listenerClass: external-unstable
158160
roleGroups:
159161
default:
160162
replicas: 1

examples/simple-airflow-cluster.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ spec:
2828
exposeConfig: false
2929
credentialsSecret: simple-airflow-credentials
3030
webservers:
31+
config:
32+
listenerClass: external-unstable
3133
roleGroups:
3234
default:
3335
replicas: 1

tests/templates/kuttl/cluster-operation/08-install-airflow.yaml.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ spec:
4040
credentialsSecret: test-airflow-credentials
4141
webservers:
4242
config:
43+
listenerClass: external-unstable
4344
logging:
4445
enableVectorAgent: {{ lookup('env', 'VECTOR_AGGREGATOR') | length > 0 }}
4546
roleGroups:

0 commit comments

Comments
 (0)