mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
cert-manager update
This commit is contained in:
parent
2627f1278f
commit
6943697e7e
@ -1,14 +1,32 @@
|
|||||||
|
# Installation
|
||||||
|
|
||||||
|
## Deployment
|
||||||
|
|
||||||
|
1. Add the Helm Repository & Update
|
||||||
|
```bash
|
||||||
helm repo add jetstack https://charts.jetstack.io
|
helm repo add jetstack https://charts.jetstack.io
|
||||||
|
|
||||||
|
helm repo update
|
||||||
Install CRDs
|
```
|
||||||
(option 1) manually:
|
2. Install Cert-Manager with Helm & CRDs
|
||||||
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.7.0/cert-manager.crds.yaml
|
```bash
|
||||||
|
|
||||||
Or
|
|
||||||
install with helm
|
|
||||||
--set installCRDs=true
|
|
||||||
|
|
||||||
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
|
||||||
|
```
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Add your Issuer or ClusterIssuer Objects, Credentails and Certificates.
|
||||||
|
|
||||||
|
*For more info visit:* [Official Cert-Manager Documentation](https://cert-manager.io/docs/)
|
||||||
|
|
||||||
|
# Best-Practices & Post-Installation
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
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/)
|
@ -25,7 +25,7 @@ spec:
|
|||||||
# Configure DNS or HTTP Challenge here...
|
# Configure DNS or HTTP Challenge here...
|
||||||
# ---
|
# ---
|
||||||
# DNS Challenge:
|
# DNS Challenge:
|
||||||
- dns01:
|
# - dns01:
|
||||||
# Configure your DNS Provider here...
|
# Configure your DNS Provider here...
|
||||||
# ---
|
# ---
|
||||||
# cloudflare:
|
# cloudflare:
|
||||||
|
Loading…
Reference in New Issue
Block a user