We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kubernetes.io/tls
Is your feature request related to a problem? Please describe.
TLS keys/certificates are opaque, but the central information (validity dates, subject) is often needed when troubleshooting connection issues.
A clear and concise description of what the problem is.
Describe the solution you'd like
Certificates in secrets of type kubernetes.io/tls should show the subjects and expiry dates in the overview.
Describe alternatives you've considered
Copying the entire secret, extracting the pem blocks and getting a summary with openssl/kse is possible, but not user friendly.
A plugin like kubectl get secret … -oyaml| yq -r .["tls.key"] | openssl x509 … could work, but go has all of these functions already in the stdlib.
kubectl get secret … -oyaml| yq -r .["tls.key"] | openssl x509 …
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
TLS keys/certificates are opaque, but the central information (validity dates, subject) is often needed when troubleshooting connection issues.
A clear and concise description of what the problem is.
Describe the solution you'd like
Certificates in secrets of type
kubernetes.io/tls
should show the subjects and expiry dates in the overview.Describe alternatives you've considered
Copying the entire secret, extracting the pem blocks and getting a summary with openssl/kse is possible, but not user friendly.
A plugin like
kubectl get secret … -oyaml| yq -r .["tls.key"] | openssl x509 …
could work, but go has all of these functions already in the stdlib.The text was updated successfully, but these errors were encountered: