Skip to content

Commit

Permalink
[CI] Fix deployment scripts [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Corneil du Plessis committed Mar 26, 2024
1 parent 9d7239f commit 965852e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/deploy/carvel/load-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ case $DATABASE in
esac
case $BROKER in
"kafka")
sh "$K8S/load-image.sh" "confluentinc/cp-kafka" "5" false
sh "$K8S/load-image.sh" "confluentinc/cp-zookeeper" "5" false
sh "$K8S/load-image.sh" "confluentinc/cp-kafka" "5.5.2" false
sh "$K8S/load-image.sh" "confluentinc/cp-zookeeper" "5.5.2" false
;;
"rabbit" | "rabbitmq")
sh "$K8S/load-image.sh" "rabbitmq" "3.8-management" false
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/k8s/deploy-scdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ if [ "$K8S_DRIVER" != "tmc" ] && [ "$K8S_DRIVER" != "gke" ]; then
"kafka")
# TODO get version from yaml spec.template.spec.containers[0].image
sh "$SCDIR/load-image.sh" "confluentinc/cp-kafka:5.5.2"
sh "$SCDIR/load-image.sh" "confluentinc/cp-zookeeper:5"
sh "$SCDIR/load-image.sh" "confluentinc/cp-zookeeper:5.5.2"
;;
"rabbit" | "rabbitmq")
# TODO get version from yaml spec.template.spec.containers[0].image
Expand Down
2 changes: 1 addition & 1 deletion src/docker-compose/docker-compose-kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:
- zookeeper

zookeeper:
image: confluentinc/cp-zookeeper:5
image: confluentinc/cp-zookeeper:5.5.2
container_name: dataflow-kafka-zookeeper
expose:
- "2181"
Expand Down

0 comments on commit 965852e

Please sign in to comment.