This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 228
[cetic/nifi] Make helm chart compatible with apache/nifi >= 1.19.0
#313
Labels
enhancement
New feature or request
Comments
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
pushed a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
pushed a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
jrebmann
added a commit
to jrebmann/helm-nifi
that referenced
this issue
Sep 27, 2023
Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de>
2 tasks
I created a pull request #314 to make it compatible with |
This issue is stale because it has not seen recent activity. Remove stale label or comment or this will be closed. |
github-actions
bot
added
the
stale
No recent activity, will be closed unless label removed
label
Nov 27, 2023
The PR for this issue is essential to get in sync with the latest Apache NiFi versions. |
banzo
added a commit
that referenced
this issue
Dec 20, 2023
* Make compatible with apache/nifi >= 1.19.0 (#313) Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de> * trigger GitHub actions * trigger GitHub actions --------- Signed-off-by: Jannik Rebmann <jannik.rebmann@ise.fraunhofer.de> Co-authored-by: Sebastien Dupont <dupont.sebastien@gmail.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Problem description:
I like to run the latest
apache/nifi
container version1.23.2
in my kubernetes cluster.The last working nifi version is
1.18.0
.Analysis:
Since
apache/nifi 1.19.0
docker container uses java 11.When changing to this Java version there was a breaking change: The default keystore type changed from
JKS
toPKCS12
.Source: https://bugs.openjdk.org/browse/JDK-8178828
This change causes
cetic/helm-nifi
to ignore all certificates set viacert-manager
andcaSecrets
.Solution:
Set the keystore type explicitly to
JKS
on importing the certificates by adding-storetype JKS
or-deststoretype JKS
to thekeytool
command.The advantage of this solution is that it is backward compatible and thus works on for java 8.
The text was updated successfully, but these errors were encountered: