From c497a1e0f29f97b1ea4c03824699c12f9e2cdf41 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Fri, 1 May 2026 22:23:56 +0200 Subject: [PATCH] Add certificate Signed-off-by: Nikolai Rodionov --- .../softplayer-backend/templates/certificate.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 helm/softplayer-backend/templates/certificate.yaml diff --git a/helm/softplayer-backend/templates/certificate.yaml b/helm/softplayer-backend/templates/certificate.yaml new file mode 100644 index 0000000..271a926 --- /dev/null +++ b/helm/softplayer-backend/templates/certificate.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: {{ include "softplayer-backend.fullname" . }} + labels: + {{- include "softplayer-backend.labels" . | nindent 4 }} +spec: + dnsNames: + - softplayer-backend.badhouseplants.net + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: badhouseplants-issuer-http01 + secretName: authentik-tls-secret