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

Commit

Permalink
bump chart and update env var
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnuttinck committed Apr 27, 2020
1 parent 189d781 commit b56517d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
name: nifi
version: 0.4.0
version: 0.4.1
appVersion: 1.11.4
description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems.
keywords:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ The following table lists the configurable parameters of the nifi chart and the
| `extraVolumes` | Additional Volumes available within the pod (see [spec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#volume-v1-core) for format) | `[]` |
| **extraVolumeMounts** |
| `extraVolumeMounts` | VolumeMounts for the nifi-server container (see [spec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#volumemount-v1-core) for details) | `[]` |
| **environmentVariables** |
| `environmentVariables` | Additional environment variables for the nifi-container (see [spec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#envvar-v1-core) for details) | `[]` |
| **ens** |
| `env` | Additional environment variables for the nifi-container (see [spec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#envvar-v1-core) for details) | `[]` |
| **zookeeper** |
|`zookeeper.enabled` | If true, deploy Zookeeper | `true` |
|`zookeeper.url` | If the Zookeeper Chart is disabled a URL and port are required to connect | `nil` |
Expand Down
4 changes: 2 additions & 2 deletions templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ spec:
env:
- name: NIFI_ZOOKEEPER_CONNECT_STRING
value: {{ template "zookeeper.url" . }}
{{- if .Values.environmentVariables }}
{{ toYaml .Values.environmentVariables | indent 8 }}
{{- if .Values.env }}
{{ toYaml .Values.env | indent 8 }}
{{- end }}
lifecycle:
preStop:
Expand Down
3 changes: 2 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ extraVolumeMounts: []

extraVolumes: []

environmentVariables: []
## Extra environment variables that will be pass onto deployment pods
env: []

# ------------------------------------------------------------------------------
# Zookeeper:
Expand Down

0 comments on commit b56517d

Please sign in to comment.