Skip to content

Commit

Permalink
Correct push_images.sh to not push removed images (#2101)
Browse files Browse the repository at this point in the history
As part of PRs #2099
and #2096 we removed
the `couchbase-tools` and `mongo-sidecar` images from goreleaser,
this PR removes them from push_images.sh as well so that they are
not tried to be pushed automatically.
  • Loading branch information
viveksinghggits committed Jun 13, 2023
1 parent 4d3991e commit 3306bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/push_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset

IMAGE_REGISTRY="ghcr.io/kanisterio"
IMAGES=("mysql-sidecar" "kafka-adobe-s3-sink-connector" "postgres-kanister-tools" "postgresql" "cassandra" "kanister-kubectl-1.18" "mongo-sidecar" "mongodb" "es-sidecar" "controller" "kanister-tools" "couchbase-tools" "kafka-adobe-s3-source-connector" "mssql-tools")
IMAGES=("mysql-sidecar" "kafka-adobe-s3-sink-connector" "postgres-kanister-tools" "postgresql" "cassandra" "kanister-kubectl-1.18" "mongodb" "es-sidecar" "controller" "kanister-tools" "kafka-adobe-s3-source-connector" "mssql-tools")

TAG=${1:-"v9.99.9-dev"}

Expand Down

0 comments on commit 3306bbc

Please sign in to comment.