|
Hello, i'm trying to setup ssh certificates with a kubernetes hosted CA for an ec2 jumphost.
Now the Problem: This looks good to me. But the next step Can you give me a hint what i'm doing wrong? Best regards |
Replies: 3 comments
|
Looks like you've gotten pretty far along! First thing I would check is the certificate validity on that endpoint. |
|
Thank you @tashian i will procced here in a while. Unfortunatly i got a higher prioritized task i have to deal with for now. |
|
I had the same error. I have step-ca behind an Nginx reverse proxy, and my mistake was using the leaf certificate instead of the fullchain in Nginx. Updating to the fullchain fixed it for me. |
Looks like you've gotten pretty far along!
First thing I would check is the certificate validity on that endpoint.
Does the output of
step certificate inspect https://ca.example.com --bundlegive you a certificate bundle that chains back up to your root CA whose fingerprint is$CA_FINGERPRINT?If you're using
step-cadirectly, it will match.If you're using
step-cathrough a reverse proxy, it may not.Since it's Kubernetes, I'm suspecting there's a proxy involved here.
If that's the case, see Proxying
step-catraffic for details on how to address the issue.