mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 00:47:04 +02:00
feat(common): Release v3.3.0 (#335)
This commit is contained in:
parent
040eb7b9d2
commit
74f3170cec
19 changed files with 386 additions and 10 deletions
|
@ -149,6 +149,10 @@
|
|||
"securityContext": {
|
||||
"$ref": "k8s-api.json#/core.v1.ContainerSecurityContext"
|
||||
},
|
||||
"stdin": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"terminationMessagePath": {
|
||||
"type": "string"
|
||||
},
|
||||
|
@ -156,6 +160,10 @@
|
|||
"type": "string",
|
||||
"enum": ["File", "FallbackToLogsOnError"]
|
||||
},
|
||||
"tty": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"workingDir": {
|
||||
"type": "string"
|
||||
}
|
||||
|
|
|
@ -146,6 +146,22 @@
|
|||
"podManagementPolicy": {
|
||||
"type": "string"
|
||||
},
|
||||
"persistentVolumeClaimRetentionPolicy": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"whenDeleted": {
|
||||
"type": "string",
|
||||
"enum": ["Delete", "Retain"],
|
||||
"default": "Retain"
|
||||
},
|
||||
"whenScaled": {
|
||||
"type": "string",
|
||||
"enum": ["Delete", "Retain"],
|
||||
"default": "Retain"
|
||||
}
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
29
charts/library/common/schemas/rawResource.json
Normal file
29
charts/library/common/schemas/rawResource.json
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"instance": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"apiVersion": {
|
||||
"type": "string"
|
||||
},
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"annotations": {
|
||||
"$ref": "definitions.json#/annotations"
|
||||
},
|
||||
"labels": {
|
||||
"$ref": "definitions.json#/labels"
|
||||
},
|
||||
"nameOverride": {
|
||||
"type": "string"
|
||||
},
|
||||
"spec": {}
|
||||
},
|
||||
"required": ["apiVersion", "kind", "spec"]
|
||||
}
|
||||
}
|
|
@ -22,6 +22,9 @@
|
|||
"clusterIP": {
|
||||
"type": "string"
|
||||
},
|
||||
"externalName": {
|
||||
"type": "string"
|
||||
},
|
||||
"loadBalancerIP": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue