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/nifi-operator/crds/crds.yaml
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -362,10 +362,6 @@ spec:
362
362
description: Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
363
363
nullable: true
364
364
type: string
365
-
listenerClass:
366
-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the nodes.
367
-
nullable: true
368
-
type: string
369
365
logging:
370
366
default:
371
367
containers: {}
@@ -780,11 +776,15 @@ spec:
780
776
x-kubernetes-preserve-unknown-fields: true
781
777
roleConfig:
782
778
default:
779
+
listenerClass: cluster-internal
783
780
podDisruptionBudget:
784
781
enabled: true
785
782
maxUnavailable: null
786
783
description: This is a product-agnostic RoleConfig, which is sufficient for most of the products.
787
784
properties:
785
+
listenerClass:
786
+
default: cluster-internal
787
+
type: string
788
788
podDisruptionBudget:
789
789
default:
790
790
enabled: true
@@ -853,10 +853,6 @@ spec:
853
853
description: Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
854
854
nullable: true
855
855
type: string
856
-
listenerClass:
857
-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the nodes.
Copy file name to clipboardExpand all lines: docs/modules/nifi/pages/usage_guide/listenerclass.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
:description: Configure Apache NiFi service exposure with cluster-internal or external-unstable listener classes.
3
3
4
4
The operator deploys a xref:listener-operator:listener.adoc[Listener] for the Node pod.
5
-
The listener defaults to only being accessible from within the Kubernetes cluster, but this can be changed by setting `.spec.nodes.config.listenerClass`:
5
+
The listener defaults to only being accessible from within the Kubernetes cluster, but this can be changed by setting `.spec.nodes.roleConfig.listenerClass`:
6
6
7
7
[source,yaml]
8
8
----
9
9
spec:
10
10
nodes:
11
-
config:
11
+
roleConfig:
12
12
listenerClass: external-unstable # <1>
13
13
----
14
14
<1> Specify one of `external-stable`, `external-unstable`, `cluster-internal` (the default setting is `cluster-internal`).
0 commit comments