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.
18 lines
566 B
YAML
18 lines
566 B
YAML
apiVersion: cert-manager.io/v1
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: letsencrypt-production
|
|
namespace: cert-manager
|
|
spec:
|
|
acme:
|
|
email: acme@van-hemmen.com
|
|
# We use the staging server here for testing to avoid hitting
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
privateKeySecretRef:
|
|
# if not existing, it will register a new account and stores it
|
|
name: letsencrypt-production
|
|
solvers:
|
|
- http01:
|
|
# The ingressClass used to create the necessary ingress routes
|
|
ingress:
|
|
class: traefik
|