2023-06-01 08:28:09 +02:00
|
|
|
# Kubernetes Cert-Manager Installation Guide
|
|
|
|
|
|
|
|
Here is the installation guide for Cert-Manager and the complete configuration.
|
2022-02-01 09:31:40 +01:00
|
|
|
|
2022-02-22 16:25:36 +01:00
|
|
|
## Deployment
|
2022-02-01 09:31:40 +01:00
|
|
|
|
2023-06-01 08:28:09 +02:00
|
|
|
### 1. Add the Helm Repository & Update
|
|
|
|
|
2022-02-22 16:25:36 +01:00
|
|
|
```bash
|
2022-02-01 09:31:40 +01:00
|
|
|
helm repo add jetstack https://charts.jetstack.io
|
2022-02-22 16:25:36 +01:00
|
|
|
helm repo update
|
|
|
|
```
|
2023-06-01 08:28:09 +02:00
|
|
|
|
|
|
|
### 2. Install Cert-Manager with Helm & CRDs
|
|
|
|
|
2022-02-22 16:25:36 +01:00
|
|
|
```bash
|
|
|
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --set installCRDs=true
|
|
|
|
```
|
2022-02-01 09:31:40 +01:00
|
|
|
|
2022-02-22 16:25:36 +01:00
|
|
|
## Configuration
|
2022-02-01 09:31:40 +01:00
|
|
|
|
2022-02-22 16:25:36 +01:00
|
|
|
Add your Issuer or ClusterIssuer Objects, Credentails and Certificates.
|
2022-02-01 09:31:40 +01:00
|
|
|
|
2023-06-01 08:28:09 +02:00
|
|
|
_For more info visit:_ [Official Cert-Manager Documentation](https://cert-manager.io/docs/)
|
2022-02-22 16:25:36 +01:00
|
|
|
|
2023-06-01 08:28:09 +02:00
|
|
|
## Best-Practices & Post-Installation
|
2022-02-22 16:25:36 +01:00
|
|
|
|
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
You can troubleshoot issues and inspect log entries for the Certificate Objects with the `kubectl describe` command.
|
|
|
|
|
2023-06-01 08:28:09 +02:00
|
|
|
_For more info visit:_ [Official Cert-Manager Troubleshooting Guide](https://cert-manager.io/docs/faq/troubleshooting/)
|