2024-12-19 17:18:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-12-27 14:50:43 +01:00
|
|
|
set -e
|
2024-12-19 17:18:36 +01:00
|
|
|
|
|
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
|
|
helm repo update
|
|
|
|
|
2024-12-27 14:50:43 +01:00
|
|
|
kubectl create namespace cert-manager || true
|
2024-12-19 17:18:36 +01:00
|
|
|
|
2024-12-27 14:50:43 +01:00
|
|
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager -f helm-values/cert-manager.yaml \
|
2024-12-19 17:18:36 +01:00
|
|
|
--set installCRDs=true
|