I have set up Kubernetes secrets.
kubectl create secret generic mysecret --from-file=mysecret=/home/ubuntu/secret.txt
And this secret can be converted to plaintext using the same kubectl command:
kubectl get secret mysecret -o yaml
# and base64 decode
How do I limit access to this secret? I only want a certain pods and only me as an operator to have access to this secret.