openssl - viewing certificate that is stored as kubernetes secret
We can use the following command to view kubernetes tls secret.
kubectl get secret/woolworths-wildcard-chain -n istio-ingress -o jsonpath="{.data['tls\.crt']}" | base64 --decode | openssl x509 -text -noout
Comments