Guillaume B.B. Van Hemmen
02ad42a186
Rename and reorganize scripts and configuration files for clarity. Updated `02_install_cert_manager.sh` to reference a new Helm values file for better configurability. Introduced nodeSelector and tolerations in `helm-values/cert-manager.yaml` for targeted deployment.
11 lines
269 B
Bash
Executable file
11 lines
269 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
helm repo update
|
|
|
|
kubectl create namespace cert-manager || true
|
|
|
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager -f helm-values/cert-manager.yaml \
|
|
--set installCRDs=true
|