[nifi] branch main updated: NIFI-12132 change default content repo archive percentage and age to 90 percent and 3 hours to better align to default user needs (#7797)

2023-09-28 Thread markap14
This is an automated email from the ASF dual-hosted git repository.

markap14 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new 476f30813d NIFI-12132 change default content repo archive percentage 
and age to 90 percent and 3 hours to better align to default user needs (#7797)
476f30813d is described below

commit 476f30813d0ba046539d51078381b615ed780952
Author: Joe Witt 
AuthorDate: Thu Sep 28 14:32:21 2023 -0700

NIFI-12132 change default content repo archive percentage and age to 90 
percent and 3 hours to better align to default user needs (#7797)
---
 .../nifi-framework-bundle/nifi-framework/nifi-resources/pom.xml   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/pom.xml 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/pom.xml
index 7766f7ba60..b916372014 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/pom.xml
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/pom.xml
@@ -66,8 +66,8 @@
 
org.apache.nifi.controller.repository.FileSystemRepository
 50 
KB
 
./content_repository
-7 
days
-
50%
+3 
hours
+
90%
 
true
 
false
 
../nifi-content-viewer/



[nifi] branch main updated (1046fdf79d -> b58f3aee4d)

2023-09-28 Thread markap14
This is an automated email from the ASF dual-hosted git repository.

markap14 pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


from 1046fdf79d NIFI-11938: This closes #7673. Created ConsumeSlack 
Processor to consume conversation history message events from Slack
 add b58f3aee4d NIFI-12138 added volume for nar extensions (#7804)

No new revisions were added by this update.

Summary of changes:
 nifi-docker/dockerhub/Dockerfile   | 2 ++
 nifi-docker/dockerhub/sh/start.sh  | 3 ++-
 nifi-docker/dockermaven/Dockerfile | 2 ++
 3 files changed, 6 insertions(+), 1 deletion(-)



[nifi] branch main updated: NIFI-12141 This closes #7805. Update README about HTTPS and OpenID Authentication for Docker Image

2023-09-28 Thread joewitt
This is an automated email from the ASF dual-hosted git repository.

joewitt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
 new b8fd22e065 NIFI-12141 This closes #7805. Update README about HTTPS and 
OpenID Authentication for Docker Image
b8fd22e065 is described below

commit b8fd22e0659549f89db831460c1312686fb51b95
Author: Marcelo Vinícius de Sousa Campos 
AuthorDate: Thu Sep 28 09:52:22 2023 -0300

NIFI-12141 This closes #7805. Update README about HTTPS and OpenID 
Authentication for Docker Image

According to this recent issue 
[NIFI-12135](https://issues.apache.org/jira/browse/NIFI-12135) I've forgotten 
to add 2 missing environment variables about OIDC configurations for docker 
image:

- NIFI_SECURITY_USER_OIDC_CLAIM_GROUPS and
- NIFI_SECURITY_USER_OIDC_TOKEN_REFRESH_WINDOW

Signed-off-by: Joseph Witt 
---
 nifi-docker/dockerhub/README.md | 24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/nifi-docker/dockerhub/README.md b/nifi-docker/dockerhub/README.md
index 422e6dcf13..a3e8388ae5 100644
--- a/nifi-docker/dockerhub/README.md
+++ b/nifi-docker/dockerhub/README.md
@@ -188,7 +188,7 @@ user with administrative privileges.
 ### For a minimal, connection to an OpenID server
 
 docker run --name nifi \
-  -v /User/dreynolds/certs/localhost:/opt/certs \
+  -v $(pwd)/certs/localhost:/opt/certs \
   -p 8443:8443 \
   -e AUTH=oidc \
   -e KEYSTORE_PATH=/opt/certs/keystore.jks \
@@ -198,16 +198,18 @@ user with administrative privileges.
   -e TRUSTSTORE_PASSWORD=rHkWR1gDNW3R9hgbeRsT3OM3Ue0zwGtQqcFKJD2EXWE \
   -e TRUSTSTORE_TYPE=JKS \
   -e INITIAL_ADMIN_IDENTITY='test' \
-  -e NIFI_SECURITY_USER_OIDC_DISCOVERY_URL: 
http://OPENID_SERVER_URL/auth/realms/OPENID_REALM/.well-known/openid-configuration
 \
-  -e NIFI_SECURITY_USER_OIDC_CONNECT_TIMEOUT: 1 \
-  -e NIFI_SECURITY_USER_OIDC_READ_TIMEOUT: 1 \
-  -e NIFI_SECURITY_USER_OIDC_CLIENT_ID: nifi \
-  -e NIFI_SECURITY_USER_OIDC_CLIENT_SECRET: 
tU47ugXO308WZqf5TtylyoMX3xH6W0kN \
-  -e NIFI_SECURITY_USER_OIDC_PREFERRED_JWSALGORITHM: RS256 \
-  -e NIFI_SECURITY_USER_OIDC_ADDITIONAL_SCOPES: email \
-  -e NIFI_SECURITY_USER_OIDC_CLAIM_IDENTIFYING_USER: preferred_username \
-  -e NIFI_SECURITY_USER_OIDC_FALLBACK_CLAIMS_IDENTIFYING_USER: email \
-  -e NIFI_SECURITY_USER_OIDC_TRUSTSTORE_STRATEGY: PKIX \
+  -e 
NIFI_SECURITY_USER_OIDC_DISCOVERY_URL=http://OPENID_SERVER_URL/auth/realms/OPENID_REALM/.well-known/openid-configuration
 \
+  -e NIFI_SECURITY_USER_OIDC_CONNECT_TIMEOUT=1 \
+  -e NIFI_SECURITY_USER_OIDC_READ_TIMEOUT=1 \
+  -e NIFI_SECURITY_USER_OIDC_CLIENT_ID=nifi \
+  -e 
NIFI_SECURITY_USER_OIDC_CLIENT_SECRET=tU47ugXO308WZqf5TtylyoMX3xH6W0kN \
+  -e NIFI_SECURITY_USER_OIDC_PREFERRED_JWSALGORITHM=RS256 \
+  -e NIFI_SECURITY_USER_OIDC_ADDITIONAL_SCOPES=email \
+  -e NIFI_SECURITY_USER_OIDC_CLAIM_IDENTIFYING_USER=preferred_username \
+  -e NIFI_SECURITY_USER_OIDC_CLAIM_GROUPS=admin \
+  -e NIFI_SECURITY_USER_OIDC_FALLBACK_CLAIMS_IDENTIFYING_USER=email \
+  -e NIFI_SECURITY_USER_OIDC_TRUSTSTORE_STRATEGY=PKIX \
+  -e NIFI_SECURITY_USER_OIDC_TOKEN_REFRESH_WINDOW='60 secs' \
   -d \
   apache/nifi:latest
 



[nifi-minifi-cpp] branch MINIFICPP-2196 created (now f3e84df69)

2023-09-28 Thread lordgamez
This is an automated email from the ASF dual-hosted git repository.

lordgamez pushed a change to branch MINIFICPP-2196
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


  at f3e84df69 Update timeout

No new revisions were added by this update.