From 3c1b637ddfef1dd68e238fc37a8e9fb9666f2f92 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Tue, 20 Jun 2023 14:50:12 -0500 Subject: [PATCH] cert-manager: Add cert for dustinandtabitha.com --- cert-manager/cert-exporter.yaml | 6 ++++++ cert-manager/certificates.yaml | 20 ++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/cert-manager/cert-exporter.yaml b/cert-manager/cert-exporter.yaml index 63de066..a4b780d 100644 --- a/cert-manager/cert-exporter.yaml +++ b/cert-manager/cert-exporter.yaml @@ -43,6 +43,11 @@ data: key: certificates/chmod777.sh.key cert: certificates/chmod777.sh.crt bundle: certificates/chmod777.sh.pem + - name: dustinandtabitha-cert + namespace: default + key: certificates/dustinandtabitha.com.key + cert: certificates/dustinandtabitha.com.crt + bundle: certificates/dustinandtabitha.com.pem known-hosts-command.ssh_config: | KnownHostsCommand /usr/bin/curl -fsL https://files.pyrocufflink.blue/ssh_known_hosts @@ -65,6 +70,7 @@ rules: - tabitha-cert - dcow-cert - chmod777-cert + - dustinandtabitha-cert --- apiVersion: rbac.authorization.k8s.io/v1 diff --git a/cert-manager/certificates.yaml b/cert-manager/certificates.yaml index d24c0ec..39e3e3c 100644 --- a/cert-manager/certificates.yaml +++ b/cert-manager/certificates.yaml @@ -106,3 +106,23 @@ spec: privateKey: algorithm: ECDSA rotationPolicy: Always + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: dustinandtabitha-cert +spec: + secretName: dustinandtabitha-cert + dnsNames: + - dustinandtabitha.com + - '*.dustinandtabitha.com' + - dustinandtabitha.xyz + - '*.dustinandtabitha.xyz' + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: zerossl + privateKey: + algorithm: ECDSA + rotationPolicy: Always