Skip to main content
Version: v1.8.0

v0.14.1 to v0.15.0

PR #189 changed the default Zookeeper init container image changed from busybox to bash. If you have overridden the NifiCluster.Spec.InitContainerImage then you need to change it to bash or one that contains a bash shell.

Getting started

If you haven't overridden the default NifiCluster.Spec.InitContainerImage, then there are no special upgrade instructions. If you have, like for example below:

apiVersion: nifi.konpyutaika.com/v1alpha1
kind: NifiCluster
metadata:
name: mynifi
spec:
initContainerImage:
repository: busybox
tag: "1.34.0"

Then you must change it to bash or an image that contains a bash shell:

apiVersion: nifi.konpyutaika.com/v1alpha1
kind: NifiCluster
metadata:
name: mynifi
spec:
initContainerImage:
repository: bash
tag: "5.2.2"