From 3dbf48ff60a86c78a08dcc6e2d1473fb04309325 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Mon, 21 Jul 2025 08:59:21 +0700 Subject: [PATCH] fix: add ClusterIssuer back to production --- platform/production/clusterissuer.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 platform/production/clusterissuer.yaml diff --git a/platform/production/clusterissuer.yaml b/platform/production/clusterissuer.yaml new file mode 100644 index 0000000..e1362bd --- /dev/null +++ b/platform/production/clusterissuer.yaml @@ -0,0 +1,13 @@ +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt-prod +spec: + acme: + server: https://acme-v02.api.letsencrypt.org/directory + privateKeySecretRef: + name: letsencrypt-account-key + solvers: + - http01: + ingress: + class: nginx -- 2.51.2