minio/charts: fix KeyError (#2307)

This commit is contained in:
Stavros Kois
2024-03-25 14:13:00 +02:00
committed by GitHub
parent 7c147e067b
commit b83a63b94e
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.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', [])
],