-
I installed Strimzi operator using the default stable version: kubectl create -f https://operatorhub.io/install/stable/strimzi-kafka-operator.yaml
How do I prevent the auto upgrade and also downgrade to older version of the operator? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This is a common functionality of OLM. By default
For more details see OLM documentation - https://olm.operatorframework.io/docs/tasks/install-operator-with-olm/ |
Beta Was this translation helpful? Give feedback.
This is a common functionality of OLM. By default
installPlanApproval
is set toAutomatic
. You should change it toManual
in youSubscription
to prevent auto-upgrades. Something like:For more details see OLM documentation - https://olm.operatorframework.io/docs/tasks/install-operator-with-olm/