helm-charts/charts/library/common/values.schema.json
Bernd Schorgers 4a5f448abd
feat(common): Release 3.2.0 (#318)
Signed-off-by: Gavin Mogan <git@gavinmogan.com>
Co-authored-by: Gavin Mogan <git@gavinmogan.com>
Co-authored-by: repo-duster[bot] <87358111+repo-duster[bot]@users.noreply.github.com>
2024-05-23 09:54:12 +00:00

76 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/bjw-s/helm-charts/common-3.2.0/charts/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"
}
}
},
"defaultPodOptions": {
"$ref": "schemas/pod.json#/options"
},
"controllers": {
"additionalProperties": {
"$ref": "schemas/controllers.json#/instance"
}
},
"serviceAccount": {
"$ref": "schemas/serviceAccount.json#/settings"
},
"configMaps": {
"additionalProperties": {
"$ref": "schemas/configmap.json#/instance"
}
},
"secrets": {
"additionalProperties": {
"$ref": "schemas/secret.json#/instance"
}
},
"ingress": {
"additionalProperties": {
"$ref": "schemas/ingress.json#/instance"
}
},
"route": {
"additionalProperties": {
"$ref": "schemas/route.json#/instance"
}
},
"service": {
"additionalProperties": {
"$ref": "schemas/service.json#/instance"
}
},
"serviceMonitor": {
"additionalProperties": {
"$ref": "schemas/serviceMonitor.json#/instance"
}
},
"networkpolicies": {
"additionalProperties": {
"$ref": "schemas/networkpolicy.json#/instance"
}
},
"persistence": {
"additionalProperties": {
"$ref": "schemas/persistence.json#/item"
}
}
}
}