Share feedback
Answers are generated based on the documentation.

Experimental

Schema

StoredSecretOptions

Type: object

StoredSecretOptions resolves owner-scoped references before the workload can run.
secrets · required

Type: array

secrets are complete Secret resource names resolved once at admission.
Array item

Type: string

All schema constraints and annotations
{
  "pattern": "^secrets/[^/]+$",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "secrets are complete Secret resource names resolved once at admission.",
  "items": {
    "pattern": "^secrets/[^/]+$",
    "type": "string"
  },
  "minItems": 1,
  "type": "array"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "StoredSecretOptions resolves owner-scoped references before the workload can run.",
  "properties": {
    "secrets": {
      "description": "secrets are complete Secret resource names resolved once at admission.",
      "items": {
        "pattern": "^secrets/[^/]+$",
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "secrets"
  ],
  "title": "StoredSecretOptions",
  "type": "object"
}