diff --git a/Chart.yaml b/Chart.yaml index fb5ade1c..5b67e849 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,6 +1,6 @@ name: nifi -version: 0.2.3 -appVersion: 1.9.2 +version: 0.3.0 +appVersion: 1.10.0 description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems. keywords: - nifi diff --git a/README.md b/README.md index d8091076..ff3ce213 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,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.9.2` | +| `image.tag` | nifi Image tag | `1.10.0` | | `image.pullPolicy` | nifi Image pull policy | `IfNotPresent` | | `image.pullSecret` | nifi Image pull secret | `nil` | | **SecurityContext** | diff --git a/configs/zookeeper.properties b/configs/zookeeper.properties index 1da4a45f..f0c45ab5 100644 --- a/configs/zookeeper.properties +++ b/configs/zookeeper.properties @@ -20,7 +20,6 @@ # # -clientPort=2181 initLimit=10 autopurge.purgeInterval=24 syncLimit=5 @@ -33,9 +32,9 @@ autopurge.snapRetainCount=30 # every NiFi instance running an embedded zookeeper, there needs to be # a server entry below. For instance: # -# server.1=nifi-node1-hostname:2888:3888 -# server.2=nifi-node2-hostname:2888:3888 -# server.3=nifi-node3-hostname:2888:3888 +# server.1=nifi-node1-hostname:2888:3888;2181 +# server.2=nifi-node2-hostname:2888:3888;2181 +# server.3=nifi-node3-hostname:2888:3888;2181 # # The index of the server corresponds to the myid file that gets created # in the dataDir of each node running an embedded zookeeper. See the diff --git a/requirements.yaml b/requirements.yaml index 1608c0eb..a1e7f929 100644 --- a/requirements.yaml +++ b/requirements.yaml @@ -1,6 +1,6 @@ --- dependencies: - name: zookeeper - version: 1.3.1 + version: 2.1.1 repository: https://kubernetes-charts-incubator.storage.googleapis.com/ condition: zookeeper.enabled diff --git a/values.yaml b/values.yaml index 0d8d7b13..287c54c4 100644 --- a/values.yaml +++ b/values.yaml @@ -1,13 +1,13 @@ --- # Number of nifi nodes -replicaCount: 1 +replicaCount: 2 ## Set default image, imageTag, and imagePullPolicy. ## ref: https://hub.docker.com/r/apache/nifi/ ## image: repository: apache/nifi - tag: "1.9.2" + tag: "1.10.0" pullPolicy: IfNotPresent ## Optionally specify an imagePullSecret.