Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated version of minio operator, remove minio-console image #543

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions helm/airgap-deployment/prepare-airgap.bash
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ if [ "${REGISTRY}" = "docker.io" ]; then
IMAGES=(
quay.io/strimzi/operator:0.32.0
registry.opensource.zalan.do/acid/postgres-operator:v1.9.0
docker.io/minio/operator:v4.5.8
docker.io/minio/operator:v${MINIO_OPERATOR_VERSION}
docker.io/minio/mc:RELEASE.2023-06-28T21-54-17Z
docker.io/emqx/emqx-operator-controller:2.2.3
docker.io/minio/minio:RELEASE.2023-01-12T02-06-16Z
docker.io/redis:7.2
ghcr.io/zalando/spilo-15:2.1-p9
docker.io/minio/console:v0.22.5
docker.io/velero/velero:${VELERO_VERSION}
docker.io/alerta/alerta-web:8.1.0
docker.io/busybox:1.28
Expand Down Expand Up @@ -61,13 +60,12 @@ else
IMAGES=(
quay.io/strimzi/operator:0.32.0
registry.opensource.zalan.do/acid/postgres-operator:v1.9.0
docker.io/minio/operator:v4.5.8
docker.io/minio/operator:v${MINIO_OPERATOR_VERSION}
docker.io/minio/mc:RELEASE.2023-06-28T21-54-17Z
docker.io/emqx/emqx-operator-controller:2.2.3
docker.io/minio/minio:RELEASE.2023-01-12T02-06-16Z
docker.io/redis:7.2
ghcr.io/zalando/spilo-15:2.1-p9
docker.io/minio/console:v0.22.5
docker.io/velero/velero:${VELERO_VERSION}
docker.io/alerta/alerta-web:8.1.0
docker.io/busybox:1.28
Expand Down
2 changes: 1 addition & 1 deletion helm/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export POSTGRES_OPERATOR_VERSION="v1.9.0"
export VELERO_HELM_VERSION=velero-3.2.0
export VELERO_PLUGIN_VERSION="v1.5.0"
export VELERO_VERSION="v1.10.0"
export MINIO_OPERATOR_VERSION="4.5.8"
export MINIO_OPERATOR_VERSION="5.0.14"
export CERT_MANAGER_VERSION="1.9.1"
export STRIMZI_VERSION="0.32.0"
export OFFLINE=${OFFLINE:-false}
Expand Down
2 changes: 1 addition & 1 deletion helm/install_operators.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if [ "$OFFLINE" = "true" ]; then
chmod +x kubectl-minio
export PATH="$(pwd):$PATH"
kubectl minio version
kubectl minio init --image=${REGISTRY}/minio/operator:v${MINIO_OPERATOR_VERSION} --console-image=${REGISTRY}/minio/console:v0.22.5
kubectl minio init --image=${REGISTRY}/minio/operator:v${MINIO_OPERATOR_VERSION} --console-image=${REGISTRY}/minio/operator:v${MINIO_OPERATOR_VERSION}
else
wget https://github.com/minio/operator/releases/download/v${MINIO_OPERATOR_VERSION}/kubectl-minio_${MINIO_OPERATOR_VERSION}_linux_amd64
mv kubectl-minio_${MINIO_OPERATOR_VERSION}_linux_amd64 kubectl-minio
Expand Down
Loading