A reference to a Kubernetes Secret containing a TLS certificate.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretObjectReference", "title": "SecretObjectReference", "type": "object", "description": "A reference to a Kubernetes Secret containing a TLS certificate.", "required": [ "name" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string", "default": "Secret" }, "namespace": { "type": "string" }, "name": { "type": "string", "description": "Name of the Secret." } } }