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

Commit

Permalink
migrate to nifi 1.10.0 #28
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnuttinck committed Dec 9, 2019
1 parent 3f77463 commit 4a97f6d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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** |
Expand Down
7 changes: 3 additions & 4 deletions configs/zookeeper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#
#

clientPort=2181
initLimit=10
autopurge.purgeInterval=24
syncLimit=5
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.yaml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 4a97f6d

Please sign in to comment.