minio/charts: fix upgrade strategy (#2662)

This commit is contained in:
Stavros Kois
2024-07-16 23:09:08 +03:00
committed by GitHub
parent 455e3c4480
commit 8ef5a7b924
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ description: High Performance, Kubernetes Native Object Storage
annotations:
title: MinIO
type: application
version: 2.0.7
version: 2.0.8
apiVersion: v2
appVersion: "2023-07-21"
kubeVersion: ">=1.16.0-0"

View File

@@ -9,7 +9,7 @@ from catalog_update.upgrade_strategy import datetime_versioning
ENUMS = {
'image': {
'RE_STABLE_VERSION': re.compile(r'RELEASE.\d{4}-\d{2}-\d{2}T\d{2}-\d{2}-\d{2}}Z'),
'RE_STABLE_VERSION': re.compile(r'RELEASE\.\d{4}-\d{2}-\d{2}T\d{2}-\d{2}-\d{2}Z'),
'STRIP_TEXT': 'RELEASE.',
'function': datetime_versioning,
'function_arg': '%Y-%m-%dT%H-%M-%SZ'