Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Feature/nifi 1.16.3 (#259)
Browse files Browse the repository at this point in the history
Increment Nifi version to 1.16.3 (latest)


Signed-off-by: gforeman <[email protected]>
  • Loading branch information
gforeman02 authored Jun 27, 2022
1 parent 396d246 commit b1c476f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
name: nifi
version: 1.1.1
appVersion: 1.14.0
appVersion: 1.16.3
description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems.
keywords:
- nifi
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## Introduction

This [Helm](https://helm.sh/) chart installs [Apache NiFi](https://nifi.apache.org/) 1.14.0 in a [Kubernetes](https://kubernetes.io/) cluster.
This [Helm](https://helm.sh/) chart installs [Apache NiFi](https://nifi.apache.org/) 1.16.3 in a [Kubernetes](https://kubernetes.io/) cluster.

## Prerequisites

Expand Down Expand Up @@ -95,7 +95,7 @@ The following table lists the configurable parameters of the nifi chart and the
| `replicaCount` | Number of nifi nodes | `1` |
| **Image** |
| `image.repository` | nifi Image name | `apache/nifi` |
| `image.tag` | nifi Image tag | `1.14.0` |
| `image.tag` | nifi Image tag | `1.16.3` |
| `image.pullPolicy` | nifi Image pull policy | `IfNotPresent` |
| `image.pullSecret` | nifi Image pull secret | `nil` |
| **SecurityContext** |
Expand Down
6 changes: 3 additions & 3 deletions doc/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ helm dep up
```
2. **Set a sensitiveKey**

In 1.14.0 version, Nifi needs a sensitiveKey to encrypt sensitive information. This key can be setted in the `values.yaml` file:
In 1.16.3 version, Nifi needs a sensitiveKey to encrypt sensitive information. This key can be setted in the `values.yaml` file:

````
properties:
Expand All @@ -27,7 +27,7 @@ properties:

This helm chart provides three types of authentication: Single User, LDAP and OIDC.

You can find how to configure these authentications on this [page](https://github.com/cetic/helm-nifi/tree/feature/nifi_1.14.0/doc/USERMANAGER.md).
You can find how to configure these authentications on this [page](doc/USERMANAGER.md).

4. **Install Nifi**

Expand All @@ -44,4 +44,4 @@ If you let the Nifi service in ClusterIP mode, you cannot reach Nifi from the ou
kubectl port-forward service/nifi 8443:8443
````

Now you can access to Nifi with a browser by typing the address: `https://localhost:8443`
Now you can access to Nifi with a browser by typing the address: `https://localhost:8443`
2 changes: 1 addition & 1 deletion doc/USERMANAGEMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ oidc:
admin: [email protected]
````

There are a lot of ID providers that can be used to perform an OIDC authentication. In our case, we have tested that with Keycloak. You will find an example of Keycloak config on this [page](https://github.com/cetic/helm-nifi/tree/feature/nifi_1.14.0/doc/KEYCLOAK.md).
There are a lot of ID providers that can be used to perform an OIDC authentication. In our case, we have tested that with Keycloak. You will find an example of Keycloak config on this [page](doc/KEYCLOAK.md).


## 4. LDAP
Expand Down
6 changes: 3 additions & 3 deletions tests/06-alpha.flow.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<bundle>
<group>org.apache.nifi</group>
<artifact>nifi-standard-nar</artifact>
<version>1.14.0</version>
<version>1.16.3</version>
</bundle>
<maxConcurrentTasks>1</maxConcurrentTasks>
<schedulingPeriod>1 sec</schedulingPeriod>
Expand Down Expand Up @@ -117,7 +117,7 @@
<bundle>
<group>org.apache.nifi</group>
<artifact>nifi-ssl-context-service-nar</artifact>
<version>1.14.0</version>
<version>1.16.3</version>
</bundle>
<enabled>true</enabled>
<property>
Expand Down Expand Up @@ -162,7 +162,7 @@
<bundle>
<group>org.apache.nifi</group>
<artifact>nifi-site-to-site-reporting-nar</artifact>
<version>1.14.0</version>
<version>1.16.3</version>
</bundle>
<schedulingPeriod>5 sec</schedulingPeriod>
<scheduledState>RUNNING</scheduledState>
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
##
image:
repository: apache/nifi
tag: "1.14.0"
tag: "1.16.3"
pullPolicy: "IfNotPresent"

## Optionally specify an imagePullSecret.
Expand Down

0 comments on commit b1c476f

Please sign in to comment.