How to update the Teleport license for a Kubernetes deployment #36243
blorby
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
Thanks for this write-up! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
kubectl get namespaces
openssl x509 -text -in license.pem | grep "Not After"
kubectl -n teleport delete secret license
kubectl -n teleport create secret generic license --from-file=license.pem
kubectl -n teleport get pods | grep auth | cut -d' ' -f 1 | xargs kubectl -n teleport delete pod
Beta Was this translation helpful? Give feedback.
All reactions