Skip to content

Commit 1761082

Browse files
committed
fix: Fixing Strimzi version to 0.50.1 instead of latest
Signed-off-by: Emmanuel Hugonnet <ehugonne@redhat.com>
1 parent 566978c commit 1761082

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/cloud-deployment-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Install Kind
2929
run: |
30-
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
30+
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.31.0/kind-linux-amd64
3131
chmod +x ./kind
3232
sudo mv ./kind /usr/local/bin/kind
3333
kind version

examples/cloud-deployment/scripts/deploy.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,9 @@ if ! kubectl get namespace kafka > /dev/null 2>&1; then
177177
fi
178178

179179
if ! kubectl get crd kafkas.kafka.strimzi.io > /dev/null 2>&1; then
180-
echo "Installing Strimzi operator..."
181-
kubectl create -f 'https://strimzi.io/install/latest?namespace=kafka' -n kafka
180+
echo "Installing Strimzi operator... at https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.50.1/strimzi-cluster-operator-0.50.1.yaml"
181+
kubectl create -f 'https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.50.1/strimzi-cluster-operator-0.50.1.yaml' -n kafka
182+
# kubectl create -f 'https://strimzi.io/install/latest?namespace=kafka' -n kafka
182183

183184
echo "Waiting for Strimzi operator deployment to be created..."
184185
for i in {1..30}; do

0 commit comments

Comments
 (0)