Skip to content

Commit 965852e

Browse files
author
Corneil du Plessis
committed
[CI] Fix deployment scripts [skip ci]
1 parent 9d7239f commit 965852e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/deploy/carvel/load-images.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ case $DATABASE in
4646
esac
4747
case $BROKER in
4848
"kafka")
49-
sh "$K8S/load-image.sh" "confluentinc/cp-kafka" "5" false
50-
sh "$K8S/load-image.sh" "confluentinc/cp-zookeeper" "5" false
49+
sh "$K8S/load-image.sh" "confluentinc/cp-kafka" "5.5.2" false
50+
sh "$K8S/load-image.sh" "confluentinc/cp-zookeeper" "5.5.2" false
5151
;;
5252
"rabbit" | "rabbitmq")
5353
sh "$K8S/load-image.sh" "rabbitmq" "3.8-management" false

src/deploy/k8s/deploy-scdf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ if [ "$K8S_DRIVER" != "tmc" ] && [ "$K8S_DRIVER" != "gke" ]; then
121121
"kafka")
122122
# TODO get version from yaml spec.template.spec.containers[0].image
123123
sh "$SCDIR/load-image.sh" "confluentinc/cp-kafka:5.5.2"
124-
sh "$SCDIR/load-image.sh" "confluentinc/cp-zookeeper:5"
124+
sh "$SCDIR/load-image.sh" "confluentinc/cp-zookeeper:5.5.2"
125125
;;
126126
"rabbit" | "rabbitmq")
127127
# TODO get version from yaml spec.template.spec.containers[0].image

src/docker-compose/docker-compose-kafka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ services:
4040
- zookeeper
4141

4242
zookeeper:
43-
image: confluentinc/cp-zookeeper:5
43+
image: confluentinc/cp-zookeeper:5.5.2
4444
container_name: dataflow-kafka-zookeeper
4545
expose:
4646
- "2181"

0 commit comments

Comments
 (0)