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
*[Use a configuration file](/docs/tasks/configmap-secret/managing-secret-using-config-file/#edit-secret)
164
140
165
-
That example manifest defines a Secret with two keys in the `data` field: `username` and `password`.
166
-
The values are Base64 strings in the manifest; however, when you use the Secret with a Pod
167
-
then the kubelet provides the _decoded_ data to the Pod and its containers.
141
+
You can also edit the data in a Secret using the [Kustomize tool](/docs/tasks/configmap-secret/managing-secret-using-kustomize/#edit-secret). However, this
142
+
method creates a new `Secret` object with the edited data.
168
143
169
-
You can package many keys and values into one Secret, or use many Secrets, whichever is convenient.
144
+
Depending on how you created the Secret, as well as how the Secret is used in
145
+
your Pods, updates to existing `Secret` objects are propagated automatically to
146
+
Pods that use the data. For more information, refer to [Mounted Secrets are updated automatically](#mounted-secrets-are-updated-automatically).
0 commit comments