Guillaume B.B. Van Hemmen
6bf8d75310
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.
11 lines
286 B
Bash
11 lines
286 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
helm repo add metallb https://metallb.github.io/metallb
|
|
helm repo update
|
|
|
|
kubectl create namespace metallb-system
|
|
kubectl label namespace metallb-system pod-security.kubernetes.io/enforce=privileged
|
|
|
|
helm install metallb metallb/metallb --namespace metallb-system
|