feat(helm): allow to customize init image (#18649)

* feat(helm): allow to customize init image

* chore(helm): bump chart version to 0.5.8
This commit is contained in:
Andrii Vakarev
2022-02-10 18:43:58 +01:00
committed by GitHub
parent 7670f3a208
commit 4db70b5c18
3 changed files with 33 additions and 9 deletions

View File

@@ -111,6 +111,26 @@
"imagePullSecrets": {
"type": "array"
},
"initImage": {
"type": "object",
"additionalProperties": false,
"properties": {
"repository": {
"type": "string"
},
"tag": {
"type": "string"
},
"pullPolicy": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.0/_definitions.json##/definitions/io.k8s.api.core.v1.Container/properties/imagePullPolicy"
}
},
"required": [
"repository",
"tag",
"pullPolicy"
]
},
"service": {
"type": "object",
"additionalProperties": false,