Please help with adding self signed certificates. #2006
-
Hi i followed the instruction on Github , on how to add self signed cert. This is how i am doing it - I have also tried doing it using this method - |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi @adityaTor, could you please try to add the # Save all certificates as a bundle
BUNDLE=$(cat $PERSISTENT_DIR/ca-1.crt $PERSISTENT_DIR/ca-2.crt $PERSISTENT_DIR/ca-3.crt | base64 -w0)
apiclient set pki.local-registry.data=$BUNDLE \
pki.local-registry.trusted=true |
Beta Was this translation helpful? Give feedback.
Hi @adityaTor, could you please try to add the
-w0
parameter to thebase64
command? I had the same problem in my testing when I was implementing the feature in #1654, as you can see there I concatenated a few certificates like this: