Category / Section
How to update SSL certificate in Kubernetes secret of Bold BI site?
Published:
Prerequisites
- AWS-CLI
Steps to update SSL certificate in the Kubernetes secret of Bold BI site
Please follow the steps to update the SSL certificate in the Kubernetes secret of the Bold BI site.
-
Follow the steps below to connect your Kubernetes cluster.
-
Click the AWS command in the Linux terminal or Windows command prompt.
sudo systemctl daemon-reload
-
Please enter the AWS Access Key ID, AWS Secret Access Key, Default region name, and Default output format.
-
Update kubeconfig using the following example.
```html aws eks --region <region-name> update-kubeconfig --name <cluster-name> ```
-
Now you have successfully connected to your EKS cluster.
-
-
Delete the existing boldbi-tls secret in the Bold BI namespace where the Bold BI site was deployed.
```html kubectl delete secret boldbi-tls -n boldbi --ignore-not-found ```
-
Create a new boldbi-tls secret using the certificate and private key file shown below.
```html kubectl create secret tls boldbi-tls -n boldbi --key <private-key-path> --cert <certificate-path> ```
-
Once you have created a new secret, the site SSL issue will be resolved.