Skip to content

Commit fb06d43

Browse files
authored
fix: Fixing Strimzi version to 0.50.1 instead of latest (#710)
# Description Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md). - [ ] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [ ] Ensure the tests pass - [ ] Appropriate READMEs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕 Signed-off-by: Emmanuel Hugonnet <ehugonne@redhat.com>
1 parent 566978c commit fb06d43

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-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.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)