Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Charts/dev-c7/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
"description": "the IOC release, used to generate the /dls_sw/prod path to iocName",
"type": "string"
},
"livenessProbe": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.33.3/container.json#/properties/livenessProbe",
"type": "object"
},
"nameOverride": {
"type": "string"
},
Expand All @@ -107,6 +111,10 @@
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.33.3/podspec.json#/properties/securityContext",
"type": "object"
},
"readinessProbe": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.33.3/container.json#/properties/readinessProbe",
"type": "object"
},
"resources": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.33.3/container.json#/properties/resources",
"type": "object"
Expand Down
6 changes: 6 additions & 0 deletions Charts/dev-c7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ securityContext: {}
# @schema $ref: $k8s/container.json#/properties/resources
resources: {}

# @schema $ref: $k8s/container.json#/properties/livenessProbe
livenessProbe: {}

# @schema $ref: $k8s/container.json#/properties/readinessProbe
readinessProbe: {}

# @cschema description: Path to the folder above the IOC's autosave folder. Used to generate the autosavePath as autosaveRootPath/iocName
autosaveRootPath: ""

Expand Down
Loading