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

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnuttinck committed Sep 30, 2020
2 parents 345c190 + 05aa176 commit b8927f7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: nifi
version: 0.5.3
appVersion: 1.11.4
version: 0.5.4
appVersion: 1.12.1
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,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.11.4` |
| `image.tag` | nifi Image tag | `1.12.1` |
| `image.pullPolicy` | nifi Image pull policy | `IfNotPresent` |
| `image.pullSecret` | nifi Image pull secret | `nil` |
| **SecurityContext** |
Expand All @@ -108,6 +108,7 @@ The following table lists the configurable parameters of the nifi chart and the
| `properties.siteToSite.port` | Site to Site properties Secure port | `10000` |
| `properties.siteToSite.authorizer` | | `managed-authorizer` |
| `properties.safetyValve` | Map of explicit 'property: value' pairs that overwrite other configuration | `nil` |
| `properties.customLibPath` | Path of the custom libraries folder | `nil` |
| **nifi user authentication** |
| `auth.admin` | Default admin identity | ` CN=admin, OU=NIFI` |
| `auth.ldap.enabled` | Enable User auth via ldap | `false` |
Expand Down
1 change: 1 addition & 0 deletions configs/nifi.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ nifi.templates.directory=../data/templates
nifi.ui.banner.text=
nifi.ui.autorefresh.interval=30 sec
nifi.nar.library.directory=./lib
nifi.nar.library.directory.custom={{.Values.properties.customLibPath}}
nifi.nar.working.directory=./work/nar/
nifi.documentation.working.directory=./work/docs/components

Expand Down
3 changes: 1 addition & 2 deletions templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ spec:
{{- end }}
name: https
protocol: TCP
{{- end }}
{{- if .Values.properties.httpPort }}
{{- else }}
- containerPort: {{ .Values.properties.httpPort }}
name: http
protocol: TCP
Expand Down
5 changes: 4 additions & 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.11.4"
tag: "1.12.1"
pullPolicy: IfNotPresent

## Optionally specify an imagePullSecret.
Expand Down Expand Up @@ -68,6 +68,9 @@ properties:
# listen to loopback interface so "kubectl port-forward ..." works
nifi.web.http.network.interface.lo: lo

## Include aditional processors
# customLibPath: "/opt/configuration_resources/custom_lib"

## Include additional libraries in the Nifi containers by using the postStart handler
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/attach-handler-lifecycle-event/
# postStart: /opt/nifi/psql; wget -P /opt/nifi/psql https://jdbc.postgresql.org/download/postgresql-42.2.6.jar
Expand Down

0 comments on commit b8927f7

Please sign in to comment.