Contour · Schema

SecretObjectReference

A reference to a Kubernetes Secret containing a TLS certificate.

EnvoyIngress ControllerKubernetesNetworkingProxy

Properties

Name Type Description
group string
kind string
namespace string
name string Name of the Secret.
View JSON Schema on GitHub

JSON Schema

contour-secretobjectreference-schema.json Raw ↑
{
  "$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."
    }
  }
}