summaryrefslogtreecommitdiff
path: root/playbooks.d/k3s-master
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-08-03 21:05:40 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-08-03 21:05:40 +0200
commitb23c7ea3e0967574a7496f4d0df80f43fa4255f4 (patch)
tree669f9c93f04f494b2e69d91fc068fafcfcae44a0 /playbooks.d/k3s-master
parent684948c374c8885eec1f079f8aa23080cbb9aec0 (diff)
Add ClusterIssuer for letsencrypt-production
Diffstat (limited to 'playbooks.d/k3s-master')
-rw-r--r--playbooks.d/k3s-master/share/manifests/infrastructure/configuration/cluster-issuers/letsencrypt-production.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/playbooks.d/k3s-master/share/manifests/infrastructure/configuration/cluster-issuers/letsencrypt-production.yaml b/playbooks.d/k3s-master/share/manifests/infrastructure/configuration/cluster-issuers/letsencrypt-production.yaml
new file mode 100644
index 0000000..75aea5f
--- /dev/null
+++ b/playbooks.d/k3s-master/share/manifests/infrastructure/configuration/cluster-issuers/letsencrypt-production.yaml
@@ -0,0 +1,16 @@
+---
+apiVersion: cert-manager.io/v1
+kind: ClusterIssuer
+metadata:
+ name: letsencrypt-production
+spec:
+ acme:
+ email: root@tyil.net
+ server: https://acme-v02.api.letsencrypt.org/directory
+ privateKeySecretRef:
+ name: clusterissuer-letsencrypt-production
+ solvers:
+ - http01:
+ ingress:
+ class: nginx
+...