Skip to content

Commit 9429e9f

Browse files
committed
chore(nifi): Bump to 2.2.0, upgrade postgres jdbc driver
1 parent 3062ed2 commit 9429e9f

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.github/workflows/dev_nifi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
IMAGE_NAME: nifi
66
# TODO (@NickLarsenNZ): Use a versioned image with stackable0.0.0-dev or stackableXX.X.X so that
77
# the demo is reproducable for the release and it will be automatically replaced for the release branch.
8-
IMAGE_VERSION: 1.27.0-postgresql
8+
IMAGE_VERSION: 2.2.0-postgresql
99
REGISTRY_PATH: stackable
1010
DOCKERFILE_PATH: "demos/signal-processing/Dockerfile-nifi"
1111

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1-
FROM oci.stackable.tech/sdp/nifi:1.27.0-stackable0.0.0-dev
1+
FROM oci.stackable.tech/sdp/nifi:2.2.0-stackable0.0.0-dev
22

3-
RUN curl --fail -o /stackable/nifi/postgresql-42.6.0.jar "https://repo.stackable.tech/repository/misc/postgresql-timescaledb/postgresql-42.6.0.jar"
3+
# This is the postgresql JDBC driver from https://jdbc.postgresql.org/download/
4+
# There appear to be no signatures to validate against 😬
5+
#
6+
# VERSION="42.7.5"
7+
# curl -O "https://jdbc.postgresql.org/download/postgresql-$VERSION.jar"
8+
# curl --fail -u "your_username" --upload-file "postgresql-$VERSION.jar" 'https://repo.stackable.tech/repository/misc/jdbc/'
9+
# rm "postgresql-$VERSION.jar"
10+
11+
ARG DRIVER_VERSION="42.7.5"
12+
RUN curl --fail -o "/stackable/nifi/postgresql-$DRIVER_VERSION.jar" "https://repo.stackable.tech/repository/misc/jdbc/postgresql-$DRIVER_VERSION.jar"

stacks/data-lakehouse-iceberg-trino-spark/nifi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: nifi
66
spec:
77
image:
8-
productVersion: 1.27.0
8+
productVersion: 2.2.0
99
clusterConfig:
1010
authentication:
1111
- authenticationClass: nifi-admin-credentials

stacks/nifi-kafka-druid-superset-s3/nifi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: nifi
66
spec:
77
image:
8-
productVersion: 1.27.0
8+
productVersion: 2.2.0
99
clusterConfig:
1010
authentication:
1111
- authenticationClass: nifi-admin-credentials

stacks/signal-processing/nifi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ metadata:
55
name: nifi
66
spec:
77
image:
8-
productVersion: 1.27.0
8+
productVersion: 2.2.0
99
# TODO (@NickLarsenNZ): Use a versioned image with stackable0.0.0-dev or stackableXX.X.X so that
1010
# the demo is reproducable for the release and it will be automatically replaced for the release branch.
11-
custom: oci.stackable.tech/stackable/nifi:1.27.0-postgresql
11+
custom: oci.stackable.tech/stackable/nifi:2.2.0-postgresql
1212
clusterConfig:
1313
listenerClass: external-unstable
1414
zookeeperConfigMapName: nifi-znode

0 commit comments

Comments
 (0)