mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-04 22:11:24 -03:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "https://raw.githubusercontent.com/truecharts/library-charts/schema-work/library/common/values.schema.json",
|
|
|
|
"type": "object",
|
|
"properties": {
|
|
"global": {
|
|
"type": "object",
|
|
"properties": {
|
|
"annotations": {
|
|
"$ref": "schemas/definitions.json#/annotations"
|
|
},
|
|
"nameOverride": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"fullnameOverride": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"labels": {
|
|
"$ref": "schemas/definitions.json#/labels"
|
|
}
|
|
}
|
|
},
|
|
"configmap": {
|
|
"additionalProperties": {
|
|
"$ref": "schemas/configmap.json#/instance"
|
|
}
|
|
},
|
|
"secret": {
|
|
"additionalProperties": {
|
|
"$ref": "schemas/secret.json#/instance"
|
|
}
|
|
},
|
|
"ingress": {
|
|
"additionalProperties": {
|
|
"$ref": "schemas/ingress.json#/instance"
|
|
}
|
|
},
|
|
"service": {
|
|
"additionalProperties": {
|
|
"$ref": "schemas/service.json#/instance"
|
|
}
|
|
},
|
|
"persistence": {
|
|
"additionalProperties": {
|
|
"$ref": "schemas/persistence.json#/item"
|
|
}
|
|
}
|
|
}
|
|
}
|