diff --git a/charts/spire/charts/spire-agent/values.schema.json b/charts/spire/charts/spire-agent/values.schema.json new file mode 100644 index 0000000..de32746 --- /dev/null +++ b/charts/spire/charts/spire-agent/values.schema.json @@ -0,0 +1,50 @@ +{ + "$schema": "http://json-schema.org/schema#", + "type": "object", + "properties": { + "server": { + "type": "object", + "properties": { + "port": { + "type": "integer", + "minimum": 1 + } + } + }, + "healthChecks": { + "type": "object", + "properties": { + "port": { + "type": "integer", + "minimum": 1 + } + } + }, + "livenessProbe": { + "type": "object", + "properties": { + "initialDelaySeconds": { + "type": "integer", + "minimum": 0 + }, + "periodSeconds": { + "type": "integer", + "minimum": 1 + } + } + }, + "readinessProbe": { + "type": "object", + "properties": { + "initialDelaySeconds": { + "type": "integer", + "minimum": 0 + }, + "periodSeconds": { + "type": "integer", + "minimum": 1 + } + } + } + } +}