Skip to content

Commit

Permalink
Merge pull request #40 from epics-containers/add-schema-globals
Browse files Browse the repository at this point in the history
Add missing globals dictionary to schema
  • Loading branch information
gilesknap authored Nov 5, 2024
2 parents 61c32ba + 8d1c4cf commit 1057ab0
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Schemas/ioc-instance.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,22 @@
"tolerations": {
"$ref": "https://kubernetesjsonschema.dev/v1.18.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/tolerations"
},
"resources": {
"$ref": "https://kubernetesjsonschema.dev/v1.18.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container/properties/resources"
"global": {
"type": "object",
"description": "Shared values for all services. Globals are passed to all subcharts",
"properties": {
"location": {
"$ref": "#/$defs/base/properties/location"
},
"ioc_group": {
"$ref": "#/$defs/base/properties/ioc_group"
},
"enabled": {
"type": "boolean",
"description": "Set to true to start a service",
"default": "true"
}
}
}
},
"additionalProperties": false
Expand Down

0 comments on commit 1057ab0

Please sign in to comment.