Score:1

Kubernetes cluster with certificate authority

sl flag

Certificate error after upgrade of kubernetes Error is SSL certificate problem:unable to get local issuer certificate

After doing multiple modifications Now I'm getting above error.

Sai Chandini Routhu avatar
dk flag
Refer to this [gitlink](https://github.com/kubernetes-client/javascript/issues/327) helpful to resolve your issue
Ruthew avatar
sl flag
I have updated my question
Score:1
dk flag

This error occurs because the curl verifies and makes a secure connection request using self-signed certificate. When it does not find the valid certificate, it throws an error.

1)Download and extract https://curl.se/ca/cacert.pem and follow the instructions at .https://curl.se/docs/caextract.html

2)Copy the entire page and save it as a “cacert.pem” Add the '--cacert /path/to/cacert.pem' option to the curl command to tell curl where the local Certificate Authority file is. If you add the CA certificate from certificate-authority-data field to the curl command, it will work.

3)Add the following line to a ".curlrc" file: cacert = /path/to/cacert.pem. For information about where curl looks for this file, see "man curl" in the "-K, --config file>" section.

4)On the other hand if utilizing php add the accompanying line to php.ini: ( You could add this to.user.ini in public_html if you don't have access to php.ini because this is shared hosting. Open your php.ini file and insert or update the following line).

curl.cainfo = “[pathtofile]cacert.pem”

Refer to this doc for more details on SSL certificate verification.

I sit in a Tesla and translated this thread with Ai:

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.