Skip to content

feat(helm): update chart minio ( 5.0.14 → 5.4.0 ) - #2208

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minio-5.x
Open

feat(helm): update chart minio ( 5.0.14 → 5.4.0 )#2208
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minio-5.x

Conversation

@renovate

@renovate renovate Bot commented Mar 3, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
minio (source) minor 5.0.145.4.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions

github-actions Bot commented Mar 3, 2024

Copy link
Copy Markdown

Path: main/homelab/minio
Version: 5.0.14 -> 5.4.0

--- /tmp/tmp.gHV8UdQjYt	2026-08-12 03:56:46.643968456 +0000
+++ /tmp/tmp.px8VWqZgQ0	2026-08-12 03:56:46.836969614 +0000
@@ -14,106 +14,105 @@
 data:
   initialize: |-
     #!/bin/sh
-    set -e ; # Have script exit in the event of a failed command.
+    set -e # Have script exit in the event of a failed command.
     MC_CONFIG_DIR="/etc/minio/mc/"
     MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}"
 
     # connectToMinio
     # Use a check-sleep-check loop to wait for MinIO service to be available
     connectToMinio() {
-      SCHEME=$1
-      ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts
-      set -e ; # fail if we can't read the keys.
-      ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ;
-      set +e ; # The connections to minio are allowed to fail.
-      echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT" ;
-      MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET" ;
-      $MC_COMMAND ;
-      STATUS=$? ;
-      until [ $STATUS = 0 ]
-      do
-        ATTEMPTS=`expr $ATTEMPTS + 1` ;
-        echo \"Failed attempts: $ATTEMPTS\" ;
-        if [ $ATTEMPTS -gt $LIMIT ]; then
-          exit 1 ;
-        fi ;
-        sleep 2 ; # 1 second intervals between attempts
-        $MC_COMMAND ;
-        STATUS=$? ;
-      done ;
-      set -e ; # reset `e` as active
-      return 0
+    	SCHEME=$1
+    	ATTEMPTS=0
+    	LIMIT=29 # Allow 30 attempts
+    	set -e   # fail if we can't read the keys.
+    	ACCESS=$(cat /config/rootUser)
+    	SECRET=$(cat /config/rootPassword)
+    	set +e # The connections to minio are allowed to fail.
+    	echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT"
+    	MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET"
+    	$MC_COMMAND
+    	STATUS=$?
+    	until [ $STATUS = 0 ]; do
+    		ATTEMPTS=$(expr $ATTEMPTS + 1)
+    		echo \"Failed attempts: $ATTEMPTS\"
+    		if [ $ATTEMPTS -gt $LIMIT ]; then
+    			exit 1
+    		fi
+    		sleep 2 # 1 second intervals between attempts
+    		$MC_COMMAND
+    		STATUS=$?
+    	done
+    	set -e # reset `e` as active
+    	return 0
     }
 
     # checkBucketExists ($bucket)
     # Check if the bucket exists, by using the exit code of `mc ls`
     checkBucketExists() {
-      BUCKET=$1
-      CMD=$(${MC} stat myminio/$BUCKET > /dev/null 2>&1)
-      return $?
+    	BUCKET=$1
+    	CMD=$(${MC} stat myminio/$BUCKET >/dev/null 2>&1)
+    	return $?
     }
 
     # createBucket ($bucket, $policy, $purge)
     # Ensure bucket exists, purging if asked to
     createBucket() {
-      BUCKET=$1
-      POLICY=$2
-      PURGE=$3
-      VERSIONING=$4
-      OBJECTLOCKING=$5
-
-      # Purge the bucket, if set & exists
-      # Since PURGE is user input, check explicitly for `true`
-      if [ $PURGE = true ]; then
-        if checkBucketExists $BUCKET ; then
-          echo "Purging bucket '$BUCKET'."
-          set +e ; # don't exit if this fails
-          ${MC} rm -r --force myminio/$BUCKET
-          set -e ; # reset `e` as active
-        else
-          echo "Bucket '$BUCKET' does not exist, skipping purge."
-        fi
-      fi
-
-    # Create the bucket if it does not exist and set objectlocking if enabled (NOTE: versioning will be not changed if OBJECTLOCKING is set because it enables versioning to the Buckets created)
-    if ! checkBucketExists $BUCKET ; then
-        if [ ! -z $OBJECTLOCKING ] ; then
-          if [ $OBJECTLOCKING = true ] ; then
-              echo "Creating bucket with OBJECTLOCKING '$BUCKET'"
-              ${MC} mb --with-lock myminio/$BUCKET
-          elif [ $OBJECTLOCKING = false ] ; then
-                echo "Creating bucket '$BUCKET'"
-                ${MC} mb myminio/$BUCKET
-          fi
-      elif [ -z $OBJECTLOCKING ] ; then
-            echo "Creating bucket '$BUCKET'"
-            ${MC} mb myminio/$BUCKET
-      else
-        echo "Bucket '$BUCKET' already exists."  
-      fi
-      fi
-
-
-      # set versioning for bucket if objectlocking is disabled or not set
-      if [ $OBJECTLOCKING = false ] ; then
-      if [ ! -z $VERSIONING ] ; then
-        if [ $VERSIONING = true ] ; then
-            echo "Enabling versioning for '$BUCKET'"
-            ${MC} version enable myminio/$BUCKET
-        elif [ $VERSIONING = false ] ; then
-            echo "Suspending versioning for '$BUCKET'"
-            ${MC} version suspend myminio/$BUCKET
-        fi
-        fi
-      else
-          echo "Bucket '$BUCKET' versioning unchanged."
-      fi
-
-
-      # At this point, the bucket should exist, skip checking for existence
-      # Set policy on the bucket
-      echo "Setting policy of bucket '$BUCKET' to '$POLICY'."
-      ${MC} anonymous set $POLICY myminio/$BUCKET
+    	BUCKET=$1
+    	POLICY=$2
+    	PURGE=$3
+    	VERSIONING=$4
+    	OBJECTLOCKING=$5
+
+    	# Purge the bucket, if set & exists
+    	# Since PURGE is user input, check explicitly for `true`
+    	if [ $PURGE = true ]; then
+    		if checkBucketExists $BUCKET; then
+    			echo "Purging bucket '$BUCKET'."
+    			set +e # don't exit if this fails
+    			${MC} rm -r --force myminio/$BUCKET
+    			set -e # reset `e` as active
+    		else
+    			echo "Bucket '$BUCKET' does not exist, skipping purge."
+    		fi
+    	fi
+
+    	# Create the bucket if it does not exist and set objectlocking if enabled (NOTE: versioning will be not changed if OBJECTLOCKING is set because it enables versioning to the Buckets created)
+    	if ! checkBucketExists $BUCKET; then
+    		if [ ! -z $OBJECTLOCKING ]; then
+    			if [ $OBJECTLOCKING = true ]; then
+    				echo "Creating bucket with OBJECTLOCKING '$BUCKET'"
+    				${MC} mb --with-lock myminio/$BUCKET
+    			elif [ $OBJECTLOCKING = false ]; then
+    				echo "Creating bucket '$BUCKET'"
+    				${MC} mb myminio/$BUCKET
+    			fi
+    		elif [ -z $OBJECTLOCKING ]; then
+    			echo "Creating bucket '$BUCKET'"
+    			${MC} mb myminio/$BUCKET
+    		else
+    			echo "Bucket '$BUCKET' already exists."
+    		fi
+    	fi
+
+    	# set versioning for bucket if objectlocking is disabled or not set
+    	if [ $OBJECTLOCKING = false ]; then
+    		if [ ! -z $VERSIONING ]; then
+    			if [ $VERSIONING = true ]; then
+    				echo "Enabling versioning for '$BUCKET'"
+    				${MC} version enable myminio/$BUCKET
+    			elif [ $VERSIONING = false ]; then
+    				echo "Suspending versioning for '$BUCKET'"
+    				${MC} version suspend myminio/$BUCKET
+    			fi
+    		fi
+    	else
+    		echo "Bucket '$BUCKET' versioning unchanged."
+    	fi
+
+    	# At this point, the bucket should exist, skip checking for existence
+    	# Set policy on the bucket
+    	echo "Setting policy of bucket '$BUCKET' to '$POLICY'."
+    	${MC} anonymous set $POLICY myminio/$BUCKET
     }
 
     # Try connecting to MinIO instance
@@ -453,7 +452,7 @@
       serviceAccountName: minio-sa
       containers:
         - name: minio
-          image: "quay.io/minio/minio:RELEASE.2023-09-30T07-02-29Z"
+          image: "quay.io/minio/minio:RELEASE.2024-12-18T13-15-44Z"
           imagePullPolicy: IfNotPresent
           command:
             - "/bin/sh"
@@ -629,7 +628,7 @@
       serviceAccountName: minio-sa
       containers:
         - name: minio-make-user
-          image: "quay.io/minio/mc:RELEASE.2023-09-29T16-41-22Z"
+          image: "quay.io/minio/mc:RELEASE.2024-11-21T17-21-54Z"
           imagePullPolicy: IfNotPresent
           command: [ "/bin/sh", "/config/add-user" ]
           env:

@renovate renovate Bot changed the title feat(charts): update helm chart minio to 5.1.0 feat(helm): update chart minio ( 5.0.14 → 5.1.0 ) Apr 15, 2024
@renovate renovate Bot changed the title feat(helm): update chart minio ( 5.0.14 → 5.1.0 ) feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) Apr 28, 2024
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from e35288f to ba1feeb Compare April 28, 2024 11:00
@renovate renovate Bot changed the title feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) - autoclosed Aug 25, 2024
@renovate renovate Bot closed this Aug 25, 2024
@renovate
renovate Bot deleted the renovate/minio-5.x branch August 25, 2024 23:22
@renovate
renovate Bot restored the renovate/minio-5.x branch August 26, 2024 04:16
@renovate renovate Bot changed the title feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) - autoclosed feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) Aug 26, 2024
@renovate renovate Bot reopened this Aug 26, 2024
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from ba1feeb to 2492650 Compare August 26, 2024 04:16
@renovate renovate Bot changed the title feat(helm): update chart minio ( 5.0.14 → 5.2.0 ) feat(helm): update chart minio ( 5.0.14 → 5.3.0 ) Oct 11, 2024
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 2492650 to 86fdb6d Compare October 11, 2024 13:01
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 86fdb6d to ffe4efe Compare January 5, 2025 17:54
@renovate renovate Bot changed the title feat(helm): update chart minio ( 5.0.14 → 5.3.0 ) feat(helm): update chart minio ( 5.0.14 → 5.4.0 ) Jan 5, 2025
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from ffe4efe to a9b15ab Compare August 10, 2025 14:53
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from a9b15ab to 02b21c0 Compare December 31, 2025 13:54
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 02b21c0 to 2306fdd Compare February 2, 2026 16:57
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 2306fdd to 69275ae Compare February 12, 2026 17:50
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 69275ae to f3bd35c Compare March 13, 2026 15:01
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch 2 times, most recently from ae709fa to 133ca31 Compare May 22, 2026 21:16
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from 133ca31 to da172f3 Compare June 18, 2026 17:46
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from da172f3 to c89f528 Compare July 20, 2026 20:42
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from c89f528 to e192254 Compare July 30, 2026 16:07
| datasource | package | from   | to    |
| ---------- | ------- | ------ | ----- |
| helm       | minio   | 5.0.14 | 5.4.0 |


Signed-off-by: Roger Rumao <rogerrum@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/minio-5.x branch from e192254 to 47f6e69 Compare August 12, 2026 03:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants