You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/helm/airflow-operator/crds/crds.yaml
+5-8Lines changed: 5 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1332,10 +1332,6 @@ spec:
1332
1332
description: Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
1333
1333
nullable: true
1334
1334
type: string
1335
-
listenerClass:
1336
-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
1337
-
nullable: true
1338
-
type: string
1339
1335
logging:
1340
1336
default:
1341
1337
containers: {}
@@ -1480,11 +1476,16 @@ spec:
1480
1476
x-kubernetes-preserve-unknown-fields: true
1481
1477
roleConfig:
1482
1478
default:
1479
+
listenerClass: cluster-internal
1483
1480
podDisruptionBudget:
1484
1481
enabled: true
1485
1482
maxUnavailable: null
1486
1483
description: This is a product-agnostic RoleConfig, which is sufficient for most of the products.
1487
1484
properties:
1485
+
listenerClass:
1486
+
default: cluster-internal
1487
+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
1488
+
type: string
1488
1489
podDisruptionBudget:
1489
1490
default:
1490
1491
enabled: true
@@ -1553,10 +1554,6 @@ spec:
1553
1554
description: Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
1554
1555
nullable: true
1555
1556
type: string
1556
-
listenerClass:
1557
-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
Copy file name to clipboardExpand all lines: docs/modules/airflow/pages/usage-guide/listenerclass.adoc
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,14 @@ The listener defaults to only being accessible from within the Kubernetes cluste
8
8
----
9
9
spec:
10
10
webservers:
11
-
config:
11
+
roleConfig:
12
12
listenerClass: external-unstable # <1>
13
+
config:
14
+
...
13
15
schedulers:
14
16
...
15
17
celeryExecutors:
16
18
...
17
19
----
18
-
<1> Specify a ListenerClass, such as `external-stable`, `external-unstable`, or `cluster-internal` (the default setting is `cluster-internal`).
20
+
<1> Specify a ListenerClass, such as `external-stable`, `external-unstable`, or `cluster-internal` (the default setting is `cluster-internal`) at role-level.
/// This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
0 commit comments