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

Replace alpine-tiny by busybox #71

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,8 @@ The following table lists the configurable parameters of the nifi chart and the
| **jvmMemory** |
| `jvmMemory` | bootstrap jvm size | `2g` |
| **SideCar** |
| `sidecar.image` | Separate image for tailing each log separately | `ez123/alpine-tini` |
| `sidecar.tag` | Image tag | `latest` |
| **BusyBox** |
| `busybox.image` | Separate image for initContainer that verifies zookeeper is accessible | `busybox` |
| `busybox.tag` | Image tag | `latest` |
| `sidecar.image` | Separate image for tailing each log separately and checking zookeeper connectivity | `busybox` |
| `sidecar.tag` | Image tag | `1.32.0` |
| **Resources** |
| `resources` | Pod resource requests and limits for logs | `{}` |
| **logResources** |
Expand Down
2 changes: 1 addition & 1 deletion templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
initContainers:
{{- if .Values.properties.isNode }}
- name: zookeeper
image: "{{ .Values.busybox.image }}:{{ .Values.busybox.tag }}"
image: "{{ .Values.sidecar.image }}:{{ .Values.sidecar.tag }}"
command:
- sh
- -c
Expand Down
9 changes: 2 additions & 7 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,10 @@ ingress:
# Amount of memory to give the NiFi java heap
jvmMemory: 2g

# Separate image for tailing each log separately
# Separate image for tailing each log separately and checking zookeeper connectivity
sidecar:
image: ez123/alpine-tini
tag: latest

# Busybox image
busybox:
image: busybox
tag: latest
tag: "1.32.0"

## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
Expand Down