Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface KubeSecretProps

Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

schema

io.k8s.api.core.v1.Secret

Hierarchy

  • KubeSecretProps

Index

Properties

Optional Readonly data

data: {}

Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4

schema

io.k8s.api.core.v1.Secret#data

Type declaration

  • [key: string]: string

Optional Readonly immutable

immutable: boolean

Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.

schema

io.k8s.api.core.v1.Secret#immutable

Optional Readonly metadata

metadata: ObjectMeta
schema

io.k8s.api.core.v1.Secret#metadata

Optional Readonly stringData

stringData: {}

stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.

schema

io.k8s.api.core.v1.Secret#stringData

Type declaration

  • [key: string]: string

Optional Readonly type

type: string

Used to facilitate programmatic handling of secret data.

schema

io.k8s.api.core.v1.Secret#type

Generated using TypeDoc