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' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnuttinck committed Nov 9, 2020
2 parents 7ad090b + e81bb85 commit 8a6d7d7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 182 deletions.
8 changes: 4 additions & 4 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
name: nifi
version: 0.5.5
version: 0.6.0
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:
Expand All @@ -18,12 +18,12 @@ maintainers:
url: https://github.com/alexnuttinck
dependencies:
- name: zookeeper
version: 2.1.1
repository: https://kubernetes-charts-incubator.storage.googleapis.com/
version: 5.23.0
repository: https://charts.bitnami.com/bitnami
condition: zookeeper.enabled
- name: nifi-registry
alias: registry
version: 0.1.0
version: 0.1.1
repository: https://dysnix.github.io/charts/
condition: registry.enabled
- name: ca
Expand Down
2 changes: 1 addition & 1 deletion charts/ca/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: apache/nifi-toolkit
pullPolicy: IfNotPresent
tag: "1.11.4"
tag: "1.12.1"

service:
type: ClusterIP
Expand Down
167 changes: 0 additions & 167 deletions configs/logback.xml

This file was deleted.

12 changes: 3 additions & 9 deletions templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ spec:
- name: {{ .Values.image.pullSecret }}
{{- end }}
containers:
{{- if .Values.extraContainers }}
{{- toYaml .Values.extraContainers | nindent 6 }}
{{- end }}
- name: server
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
Expand Down Expand Up @@ -375,9 +378,6 @@ spec:
- name: "bootstrap-notification-services-xml"
mountPath: /opt/nifi/nifi-current/conf/bootstrap-notification-services.xml
subPath: "bootstrap-notification-services.xml"
- name: "logback-xml"
mountPath: /opt/nifi/nifi-current/conf/logback.xml
subPath: "logback.xml"
- name: "login-identity-providers-xml"
mountPath: /opt/nifi/nifi-current/conf/login-identity-providers.xml
subPath: "login-identity-providers.xml"
Expand Down Expand Up @@ -480,12 +480,6 @@ spec:
items:
- key: "bootstrap-notification-services.xml"
path: "bootstrap-notification-services.xml"
- name: "logback-xml"
configMap:
name: {{ template "apache-nifi.fullname" . }}-config
items:
- key: "logback.xml"
path: "logback.xml"
- name: "login-identity-providers-xml"
configMap:
name: {{ template "apache-nifi.fullname" . }}-config
Expand Down
3 changes: 2 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,12 @@ ca:
# ------------------------------------------------------------------------------
zookeeper:
## If true, install the Zookeeper chart
## ref: https://github.com/kubernetes/charts/tree/master/incubator/zookeeper
## ref: https://github.com/bitnami/charts/blob/master/bitnami/zookeeper/values.yaml
enabled: true
## If the Zookeeper Chart is disabled a URL and port are required to connect
url: ""
port: 2181
replicaCount: 3

# ------------------------------------------------------------------------------
# Nifi registry:
Expand Down

0 comments on commit 8a6d7d7

Please sign in to comment.