Skip to content

Commit 16d9950

Browse files
author
Frederic Spiers
committed
fix(minio): values schema update
1 parent 5a2791b commit 16d9950

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

charts/minio/values.schema.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,40 @@
563563
}
564564
}
565565
},
566+
"serviceAccount": {
567+
"type": "object",
568+
"title": "Service Account Configuration",
569+
"description": "Service Account configuration parameters",
570+
"properties": {
571+
"create": {
572+
"type": "boolean",
573+
"title": "Create Service Account",
574+
"description": "Enable the creation of a ServiceAccount for MinIO",
575+
"default": true
576+
},
577+
"name": {
578+
"type": "string",
579+
"title": "Service Account Name",
580+
"description": "Name of the created ServiceAccount. If not set and create is true, a name is generated using the common.names.fullname template",
581+
"default": ""
582+
},
583+
"automountServiceAccountToken": {
584+
"type": "boolean",
585+
"title": "Automount Service Account Token",
586+
"description": "Enable/disable auto mounting of the service account token",
587+
"default": false
588+
},
589+
"annotations": {
590+
"type": "object",
591+
"title": "Service Account Annotations",
592+
"description": "Custom annotations for MinIO serviceAccount",
593+
"additionalProperties": {
594+
"type": "string"
595+
},
596+
"default": {}
597+
}
598+
}
599+
},
566600
"livenessProbe": {
567601
"type": "object",
568602
"title": "Liveness Probe Configuration",

0 commit comments

Comments
 (0)