|
@@ -1,14 +1,18 @@
|
|
|
-# Installation
|
|
|
|
|
|
|
+# Kubernetes Cert-Manager Installation Guide
|
|
|
|
|
+
|
|
|
|
|
+Here is the installation guide for Cert-Manager and the complete configuration.
|
|
|
|
|
|
|
|
## Deployment
|
|
## Deployment
|
|
|
|
|
|
|
|
-1. Add the Helm Repository & Update
|
|
|
|
|
|
|
+### 1. Add the Helm Repository & Update
|
|
|
|
|
+
|
|
|
```bash
|
|
```bash
|
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
|
-
|
|
|
|
|
helm repo update
|
|
helm repo update
|
|
|
```
|
|
```
|
|
|
-2. Install Cert-Manager with Helm & CRDs
|
|
|
|
|
|
|
+
|
|
|
|
|
+### 2. Install Cert-Manager with Helm & CRDs
|
|
|
|
|
+
|
|
|
```bash
|
|
```bash
|
|
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --set installCRDs=true
|
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --set installCRDs=true
|
|
|
```
|
|
```
|
|
@@ -17,16 +21,12 @@ helm install cert-manager jetstack/cert-manager --namespace cert-manager --creat
|
|
|
|
|
|
|
|
Add your Issuer or ClusterIssuer Objects, Credentails and Certificates.
|
|
Add your Issuer or ClusterIssuer Objects, Credentails and Certificates.
|
|
|
|
|
|
|
|
-*For more info visit:* [Official Cert-Manager Documentation](https://cert-manager.io/docs/)
|
|
|
|
|
|
|
+_For more info visit:_ [Official Cert-Manager Documentation](https://cert-manager.io/docs/)
|
|
|
|
|
|
|
|
-# Best-Practices & Post-Installation
|
|
|
|
|
|
|
+## Best-Practices & Post-Installation
|
|
|
|
|
|
|
|
## Troubleshooting
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
You can troubleshoot issues and inspect log entries for the Certificate Objects with the `kubectl describe` command.
|
|
You can troubleshoot issues and inspect log entries for the Certificate Objects with the `kubectl describe` command.
|
|
|
|
|
|
|
|
-*For more info visit:* [Official Cert-Manager Troubleshooting Guide](https://cert-manager.io/docs/faq/troubleshooting/)
|
|
|
|
|
-
|
|
|
|
|
-# Additional Referfences
|
|
|
|
|
-
|
|
|
|
|
-[Official Cert-Manager Documentation](https://cert-manager.io/docs/)
|
|
|
|
|
|
|
+_For more info visit:_ [Official Cert-Manager Troubleshooting Guide](https://cert-manager.io/docs/faq/troubleshooting/)
|