Publish new changes in catalog

This commit is contained in:
sonicaj
2024-03-25 12:14:26 +00:00
parent b83a63b94e
commit 5a072a289a
24 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.2
version: 2.0.3
apiVersion: v2
appVersion: "2023-03-13"
kubeVersion: ">=1.16.0-0"

View File

@@ -73,7 +73,7 @@ def migrate_common_lib(values):
'type': 'hostPath',
'hostPathConfig': {'hostPath': e['hostPath']},
'mountPath': e['mountPath'],
'readOnly': e['readOnly'],
'readOnly': e.get('readOnly', False),
}
for e in values.get('extraAppVolumeMounts', [])
],