From 3606109c0afa907b2f104d01f2178a3995a7442b Mon Sep 17 00:00:00 2001 From: Pedro Juarez Date: Mon, 22 Jul 2024 20:04:44 -0600 Subject: [PATCH] Release Operator v6.0.1 correction (#2235) This PR does a correction in hardcoded version in release.sh https://github.com/minio/operator/blob/10d1190cb8aff9409eb03a7894a3b041f64ce035/release.sh#L52 Signed-off-by: pjuarezd --- README.md | 2 +- examples/kustomization/base/tenant.yaml | 2 +- helm/operator/Chart.yaml | 4 ++-- helm/operator/values.yaml | 10 +++++----- helm/tenant/Chart.yaml | 4 ++-- helm/tenant/values.yaml | 4 ++-- release.sh | 2 +- resources/base/deployment.yaml | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 509ca93081d..f9ca9a01fee 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ for [kustomize](https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kusto use that to install MiniO Operator. ```sh -kubectl kustomize github.com/minio/operator\?ref=v6.0.0 +kubectl kustomize github.com/minio/operator\?ref=v6.0.1 ``` Run the following command to verify the status of the Operator: diff --git a/examples/kustomization/base/tenant.yaml b/examples/kustomization/base/tenant.yaml index 976e2611fbc..268ed6edf91 100644 --- a/examples/kustomization/base/tenant.yaml +++ b/examples/kustomization/base/tenant.yaml @@ -253,7 +253,7 @@ spec: ## Audit Logs will be deprecated soon, commenting out for now!. ## LogSearch API setup for MinIO Tenant. # log: - # image: "" # defaults to minio/operator:v6.0.0 + # image: "" # defaults to minio/operator:v6.0.1 # env: [ ] # resources: { } # nodeSelector: { } diff --git a/helm/operator/Chart.yaml b/helm/operator/Chart.yaml index a90cbf34bef..2502bf89fc8 100644 --- a/helm/operator/Chart.yaml +++ b/helm/operator/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 description: A Helm chart for MinIO Operator name: operator -version: 6.0.0 -appVersion: v6.0.0 +version: 6.0.1 +appVersion: v6.0.1 keywords: - storage - object-storage diff --git a/helm/operator/values.yaml b/helm/operator/values.yaml index fa9885131ec..19820eee68f 100644 --- a/helm/operator/values.yaml +++ b/helm/operator/values.yaml @@ -32,14 +32,14 @@ operator: ### # Specify the Operator container image to use for the deployment. # ``image.tag`` - # For example, the following sets the image to the ``quay.io/minio/operator`` repo and the v6.0.0 tag. + # For example, the following sets the image to the ``quay.io/minio/operator`` repo and the v6.0.1 tag. # The container pulls the image if not already present: # # .. code-block:: yaml # # image: # repository: quay.io/minio/operator - # tag: v6.0.0 + # tag: v6.0.1 # pullPolicy: IfNotPresent # # The chart also supports specifying an image based on digest value: @@ -53,20 +53,20 @@ operator: # image: repository: quay.io/minio/operator - tag: v6.0.0 + tag: v6.0.1 pullPolicy: IfNotPresent ### # Specify the sidecar container image to deploy on tenant pods for init container and sidecar. # Only need to change this if want to use a different version that the default, or want to set a custom registry. # ``sidecarImage.tag`` - # For example, the following sets the image to the ``quay.io/minio/operator-sidecar`` repo and the v6.0.0 tag. + # For example, the following sets the image to the ``quay.io/minio/operator-sidecar`` repo and the v6.0.1 tag. # The container pulls the image if not already present: # # .. code-block:: yaml # # sidecarImage: # repository: quay.io/minio/operator-sidecar - # tag: v6.0.0 + # tag: v6.0.1 # pullPolicy: IfNotPresent # # The chart also supports specifying an image based on digest value: diff --git a/helm/tenant/Chart.yaml b/helm/tenant/Chart.yaml index e71e247ab16..8e0f67cb9f3 100644 --- a/helm/tenant/Chart.yaml +++ b/helm/tenant/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 description: A Helm chart for MinIO Operator name: tenant -version: 6.0.0 -appVersion: v6.0.0 +version: 6.0.1 +appVersion: v6.0.1 keywords: - storage - object-storage diff --git a/helm/tenant/values.yaml b/helm/tenant/values.yaml index ce50d9aa686..ce001937838 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -1,5 +1,5 @@ ### -# WARNING: '.secrets' is deprecated since v6.0.0 and will be removed in next minor release (i.e. v5.1.0). +# WARNING: '.secrets' is deprecated since v6.0.1 and will be removed in next minor release (i.e. v5.1.0). # WARNING: Please use '.tenant.configSecret' instead. # Root key for dynamically creating a secret for use with configuring root MinIO User # Specify the ``name`` and then a list of environment variables. @@ -48,7 +48,7 @@ tenant: ### # Specify the Operator container image to use for the deployment. # ``image.tag`` - # For example, the following sets the image to the ``quay.io/minio/operator`` repo and the v6.0.0 tag. + # For example, the following sets the image to the ``quay.io/minio/operator`` repo and the v6.0.1 tag. # The container pulls the image if not already present: # # .. code-block:: yaml diff --git a/release.sh b/release.sh index f949108fc82..49fdd95e694 100755 --- a/release.sh +++ b/release.sh @@ -49,7 +49,7 @@ files=( "testing/console-tenant+kes.sh" ) -CURRENT_RELEASE="v5.0.15" +CURRENT_RELEASE=$(get_latest_release minio/operator) CURRENT_RELEASE="${CURRENT_RELEASE:1}" echo "MinIO: $MINIO_RELEASE" diff --git a/resources/base/deployment.yaml b/resources/base/deployment.yaml index 8b22092765f..d2478dc323e 100644 --- a/resources/base/deployment.yaml +++ b/resources/base/deployment.yaml @@ -23,7 +23,7 @@ spec: serviceAccountName: minio-operator containers: - name: minio-operator - image: minio/operator:v6.0.0 + image: minio/operator:v6.0.1 imagePullPolicy: IfNotPresent args: - controller