Copy K8s Secrets Between Namespaces With Updating

K8S doesn’t allow to share secrets between namespaces for security reasons. It might be acceptable from a security point of view to share secrets nevertheless - then a common workaround is to copy secrets between namespaces. One pattern is to keep a template of the secret in the default namespace and copy it from there to other namespaces. Here’s a version of copying secrets between namespaces that also works if the destination secret already exists - in this case it’s just updated with the data from the source:...

August 9, 2022 · 1 min · Marcus Schiesser