SecretReferencePatch

data class SecretReferencePatch(val name: String? = null, val namespace: String? = null)

SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

Constructors

Link copied to clipboard
constructor(name: String? = null, namespace: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

name is unique within a namespace to reference a secret resource.

Link copied to clipboard
val namespace: String? = null

namespace defines the space within which the secret name must be unique.