-
In the documentation, it says it's possible to generate the necessary CA and issuer keys and certificates using openssl. I've given it a shot but after installing, stuff don't work as expected. I'm generating keys and certificates like this:
The resulting issuer certificate looks good to me:
Then I install linkerd2 from stable using
After When running Checking the logs of the controller pod yields:
The error message seems certificate related, so I'm sure I did something wrong. But what? Continuing my investigation, I uninstalled the linkerd helm release and installed using
So this is what the proxy was unable to achieve when installed using helm. But I'm no closer to solving my problems. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
One thing I noticed when trying to follow the steps you took with
More generally, I'd recommend following the instructions in the docs which use |
Beta Was this translation helpful? Give feedback.
-
Just to be clear, with the script you published, you'd use this? |
Beta Was this translation helpful? Give feedback.
One thing I noticed when trying to follow the steps you took with
openssl
is that the certs it generates do not have the CA flag. When trying to install with these certs and the Linkerd CLI, I get the following error:More generally, I'd recommend following the instructions in the docs which use
step
. If you prefer to useopenssl
directly, I'd recommend comparing the openssl generated certs to the step generated ones to see exactly how …