Skip to content

Commit 622fcc3

Browse files
replicated-ci-kurlemosbaughlaverya
authored
Automated MinIO version update RELEASE.2024-02-04T22-36-13Z (#5066)
* Create new minio version * remove unreleased prior version of minio --------- Co-authored-by: emosbaugh <[email protected]> Co-authored-by: Andrew Lavery <[email protected]>
1 parent eca51e1 commit 622fcc3

24 files changed

+11
-11
lines changed

addons/minio/2024-01-31T20-20-33Z/Manifest

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
image minio minio/minio:RELEASE.2024-02-04T22-36-13Z

addons/minio/2024-01-31T20-20-33Z/deployment.yaml addons/minio/2024-02-04T22-36-13Z/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
- name: data
2727
mountPath: "/data"
2828
# Pulls the lastest Minio image from Docker Hub
29-
image: minio/minio:RELEASE.2024-01-31T20-20-33Z
29+
image: minio/minio:RELEASE.2024-02-04T22-36-13Z
3030
args:
3131
- --quiet
3232
- server

addons/minio/2024-01-31T20-20-33Z/install.sh addons/minio/2024-02-04T22-36-13Z/install.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function minio_pre_init() {
3535
}
3636

3737
function minio() {
38-
local src="$DIR/addons/minio/2024-01-31T20-20-33Z"
38+
local src="$DIR/addons/minio/2024-02-04T22-36-13Z"
3939
local dst="$DIR/kustomize/minio"
4040

4141
if minio_already_uninstalled; then
@@ -51,10 +51,10 @@ function minio() {
5151

5252
if [ -n "$minio_ha_exists" ]; then
5353
# don't update the statefulset or deployment, just change the images they use
54-
kubectl set image -n minio statefulset/ha-minio minio=minio/minio:RELEASE.2024-01-31T20-20-33Z
54+
kubectl set image -n minio statefulset/ha-minio minio=minio/minio:RELEASE.2024-02-04T22-36-13Z
5555

5656
# the deployment will have been deleted if data has been migrated to the statefulset, so don't error if the image isn't updated
57-
kubectl set image -n minio deployment/minio minio=minio/minio:RELEASE.2024-01-31T20-20-33Z 2>/dev/null || true
57+
kubectl set image -n minio deployment/minio minio=minio/minio:RELEASE.2024-02-04T22-36-13Z 2>/dev/null || true
5858
else
5959
# create the statefulset/deployment/service/secret/etc
6060
render_yaml_file_2 "$src/tmpl-kustomization.yaml" > "$dst/kustomization.yaml"
@@ -399,7 +399,7 @@ function minio_ask_user_hostpath_for_migration() {
399399
# 'minio-migrate-fs-backend'. this new deployment uses the same credentials used by the original minio
400400
# deployment. if the installation uses host path and not a pvc, a temporary path is requested from the user.
401401
function minio_create_fs_migration_deployment() {
402-
local src="$DIR/addons/minio/2024-01-31T20-20-33Z/migrate-fs"
402+
local src="$DIR/addons/minio/2024-02-04T22-36-13Z/migrate-fs"
403403
local dst="$DIR/kustomize/minio/migrate-fs"
404404

405405
if [ -n "$MINIO_HOSTPATH" ]; then
@@ -456,7 +456,7 @@ function minio_destroy_fs_migration_deployment() {
456456
function minio_swap_fs_migration_pvs() {
457457
local minio_pv=$1
458458
local migration_pv=$2
459-
local src="$DIR/addons/minio/2024-01-31T20-20-33Z"
459+
local src="$DIR/addons/minio/2024-02-04T22-36-13Z"
460460
local dst="$DIR/kustomize/minio"
461461

462462
MINIO_ORIGINAL_CLAIM_SIZE=$(kubectl get pvc -n "$MINIO_NAMESPACE" minio-pv-claim -o template="{{.spec.resources.requests.storage}}" 2>/dev/null)

addons/minio/2024-01-31T20-20-33Z/migrate-fs/hostpath/deployment.yaml addons/minio/2024-02-04T22-36-13Z/migrate-fs/hostpath/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
volumeMounts:
2020
- name: data
2121
mountPath: "/data"
22-
image: minio/minio:RELEASE.2024-01-31T20-20-33Z
22+
image: minio/minio:RELEASE.2024-02-04T22-36-13Z
2323
args:
2424
- --quiet
2525
- server

addons/minio/2024-01-31T20-20-33Z/migrate-fs/pvc/deployment.yaml addons/minio/2024-02-04T22-36-13Z/migrate-fs/pvc/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
volumeMounts:
2020
- name: data
2121
mountPath: "/data"
22-
image: minio/minio:RELEASE.2024-01-31T20-20-33Z
22+
image: minio/minio:RELEASE.2024-02-04T22-36-13Z
2323
args:
2424
- --quiet
2525
- server

addons/minio/2024-01-31T20-20-33Z/tmpl-ha-statefulset.yaml addons/minio/2024-02-04T22-36-13Z/tmpl-ha-statefulset.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
topologyKey: "kubernetes.io/hostname"
3333
containers:
3434
- name: minio
35-
image: minio/minio:RELEASE.2024-01-31T20-20-33Z
35+
image: minio/minio:RELEASE.2024-02-04T22-36-13Z
3636
volumeMounts:
3737
- name: minio-data
3838
mountPath: /data

web/src/installers/versions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ module.exports.InstallerVersions = {
538538
],
539539
minio: [
540540
// cron-minio-update
541-
"2024-01-31T20-20-33Z",
541+
"2024-02-04T22-36-13Z",
542542
"2024-01-01T16-36-33Z",
543543
"2023-12-09T18-17-51Z",
544544
"2023-12-02T10-51-33Z",

0 commit comments

Comments
 (0)