Skip to content

Commit 6397cfe

Browse files
authored
Merge branch 'main' into fix/airflow-scheduled-job
2 parents 7fc4412 + ce1cd56 commit 6397cfe

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

demos/signal-processing/create-nifi-ingestion-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ data:
7474
import urllib3
7575
7676
# As of 2022-08-29 we cant use "https://nifi:8443" here because <h2>The request contained an invalid host header [<code>nifi:8443</code>] in the request [<code>/nifi-api</code>]. Check for request manipulation or third-party intercept.</h2>
77-
ENDPOINT = f"https://nifi-node-default-0.nifi-node-default.{os.environ['NAMESPACE']}.svc.cluster.local:8443" # For local testing / developing replace it, afterwards change back to f"https://nifi-node-default-0.nifi-node-default.{os.environ['NAMESPACE']}.svc.cluster.local:8443"
77+
ENDPOINT = f"https://nifi-node-default-0.nifi-node-default-headless.{os.environ['NAMESPACE']}.svc.cluster.local:8443" # You can replace this for local development but don't forget to revert it after.
7878
USERNAME = "admin"
7979
PASSWORD = open("/nifi-admin-credentials/admin").read()
8080

docs/modules/demos/pages/jupyterhub-keycloak.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,11 @@ proxy-648bf7f45b-62vqg 1/1 Running 0 56m
146146
147147
----
148148

149-
The `proxy` Pod has an associated `proxy-public` service with a statically-defined port (31095), exposed with type NodePort. The `keycloak` Pod has a Service called `keycloak` with a fixed port (31093) of type NodePort as well.
150-
In order to reach the JupyterHub web interface, navigate to this service.
149+
The `proxy` Pod has an associated `proxy-public` service with a statically-defined port (31095), exposed with type NodePort.
150+
The `keycloak` Pod has a Service called `keycloak` with a fixed port (31093) of type NodePort as well.
151151
The node port IP can be found in the ConfigMap `keycloak-address` (written by the Keycloak Deployment as it starts up).
152+
Both the Keycloak and the JupyterHub web interface can be accessed via this address, on ports 31093 and 31095 respectively.
153+
152154
On Kind this can be any node - not necessarily the one where the proxy Pod is running.
153155
This is due to the way in which Docker networking is used within the cluster.
154156
On other clusters it will be necessary to use the exact Node on which the proxy is running.

stacks/signal-processing/nifi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ spec:
1111
custom: oci.stackable.tech/demos/nifi:2.4.0-postgresql
1212
# pullPolicy: IfNotPresent
1313
clusterConfig:
14-
listenerClass: external-unstable
1514
authentication:
1615
- authenticationClass: nifi-users
1716
sensitiveProperties:
@@ -36,6 +35,8 @@ spec:
3635
capacity: "4Gi"
3736
stateRepo:
3837
capacity: "1Gi"
38+
roleConfig:
39+
listenerClass: external-unstable
3940
roleGroups:
4041
default:
4142
replicas: 1

stacks/trino-iceberg/trino.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ spec:
77
image:
88
productVersion: "476"
99
clusterConfig:
10-
listenerClass: external-unstable
1110
catalogLabelSelector:
1211
matchLabels:
1312
trino: trino
@@ -29,6 +28,8 @@ spec:
2928
roleGroups:
3029
default:
3130
replicas: 1
31+
roleConfig:
32+
listenerClass: external-unstable
3233
workers:
3334
config:
3435
resources:

0 commit comments

Comments
 (0)