core/scripts/03_install_cert_manager.sh
Guillaume B.B. Van Hemmen 6bf8d75310 #0000 - Add scripts and configurations for Kubernetes cluster setup
This commit includes Helm-based installation scripts for MetalLB, Traefik, Cert-Manager, and External DNS, along with their necessary configurations. Updates to cert-manager YAML ensure production-ready naming and namespace adjustments. These changes aim to streamline the deployment and management of Kubernetes services with simplified automation.
2024-12-19 17:18:36 +01:00

11 lines
229 B
Bash

#!/bin/bash
set -ex
helm repo add jetstack https://charts.jetstack.io
helm repo update
kubectl create namespace cert-manager
helm install cert-manager jetstack/cert-manager --namespace cert-manager \
--set installCRDs=true