You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: SealedSecret is the K8s representation of a "sealed Secret" -
30
-
a regular k8s Secret that has been sealed (encrypted) using the controller's
31
-
key.
29
+
description: |-
30
+
SealedSecret is the K8s representation of a "sealed Secret" - a
31
+
regular k8s Secret that has been sealed (encrypted) using the
32
+
controller's key.
32
33
properties:
33
34
apiVersion:
34
-
description: 'APIVersion defines the versioned schema of this representation
35
-
of an object. Servers should convert recognized schemas to the latest
36
-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
35
+
description: |-
36
+
APIVersion defines the versioned schema of this representation of an object.
37
+
Servers should convert recognized schemas to the latest internal value, and
38
+
may reject unrecognized values.
39
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
37
40
type: string
38
41
kind:
39
-
description: 'Kind is a string value representing the REST resource this
40
-
object represents. Servers may infer this from the endpoint the client
41
-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
42
+
description: |-
43
+
Kind is a string value representing the REST resource this object represents.
44
+
Servers may infer this from the endpoint the client submits requests to.
45
+
Cannot be updated.
46
+
In CamelCase.
47
+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
42
48
type: string
43
49
metadata:
44
50
type: object
45
51
spec:
46
-
description: SealedSecretSpec is the specification of a SealedSecret
52
+
description: SealedSecretSpec is the specification of a SealedSecret.
47
53
properties:
48
54
data:
49
55
description: Data is deprecated and will be removed eventually. Use
@@ -56,17 +62,27 @@ spec:
56
62
type: object
57
63
x-kubernetes-preserve-unknown-fields: true
58
64
template:
59
-
description: Template defines the structure of the Secret that will
60
-
be created from this sealed secret.
65
+
description: |-
66
+
Template defines the structure of the Secret that will be
67
+
created from this sealed secret.
61
68
properties:
62
69
data:
63
70
additionalProperties:
64
71
type: string
65
-
description: Keys that should be templated using decrypted data
72
+
description: Keys that should be templated using decrypted data.
66
73
nullable: true
67
74
type: object
75
+
immutable:
76
+
description: |-
77
+
Immutable, if set to true, ensures that data stored in the Secret cannot
78
+
be updated (only object metadata can be modified).
79
+
If not set to true, the field can be modified at any time.
80
+
Defaulted to nil.
81
+
type: boolean
68
82
metadata:
69
-
description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata'
83
+
description: |-
84
+
Standard object's metadata.
85
+
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
70
86
nullable: true
71
87
properties:
72
88
annotations:
@@ -91,10 +107,6 @@ spec:
91
107
description: Used to facilitate programmatic handling of secret
92
108
data.
93
109
type: string
94
-
immutable:
95
-
description: 'Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified).
96
-
If not set to true, the field can be modified at any time. Defaulted to nil.'
97
-
type: boolean
98
110
type: object
99
111
required:
100
112
- encryptedData
@@ -127,12 +139,14 @@ spec:
127
139
description: The reason for the condition's last transition.
128
140
type: string
129
141
status:
130
-
description: 'Status of the condition for a sealed secret. Valid
131
-
values for "Synced": "True", "False", or "Unknown".'
142
+
description: |-
143
+
Status of the condition for a sealed secret.
144
+
Valid values for "Synced": "True", "False", or "Unknown".
132
145
type: string
133
146
type:
134
-
description: 'Type of condition for a sealed secret. Valid value:
0 commit comments