Skip to content

Commit 19cd1b4

Browse files
authored
Merge branch 'main' into A2A-Version
2 parents 9f63e11 + fb06d43 commit 19cd1b4

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.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.30.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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,12 @@ 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+
curl -sL 'https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.50.1/strimzi-cluster-operator-0.50.1.yaml' \
182+
| sed 's/namespace: .*/namespace: kafka/' \
183+
| kubectl apply -f - -n kafka
184+
# echo "Installing Strimzi operator..."
185+
# kubectl create -f 'https://strimzi.io/install/latest?namespace=kafka' -n kafka
182186

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

0 commit comments

Comments
 (0)