diff --git a/cert-manager/cert-exporter.yaml b/cert-manager/cert-exporter.yaml index e9b48d6..e1db324 100644 --- a/cert-manager/cert-exporter.yaml +++ b/cert-manager/cert-exporter.yaml @@ -33,6 +33,11 @@ data: key: certificates/tabitha.biz.key cert: certificates/tabitha.biz.crt bundle: certificates/tabitha.biz.pem + - name: dcow-cert + namespace: default + key: certificates/darkchestofwonders.us.key + cert: certificates/darkchestofwonders.us.crt + bundle: certificates/darkchestofwonders.us.pem known-hosts-command.ssh_config: | KnownHostsCommand /usr/bin/curl -fsL https://files.pyrocufflink.blue/ssh_known_hosts @@ -53,6 +58,7 @@ rules: - dustinhatchname-cert - hatchchat-cert - tabitha-cert + - dcow-cert --- apiVersion: rbac.authorization.k8s.io/v1 diff --git a/cert-manager/certificates.yaml b/cert-manager/certificates.yaml index 5063b16..5b4f480 100644 --- a/cert-manager/certificates.yaml +++ b/cert-manager/certificates.yaml @@ -70,3 +70,21 @@ spec: privateKey: algorithm: ECDSA rotationPolicy: Always + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: dcow-cert +spec: + secretName: dcow-cert + dnsNames: + - darkchestofwonders.us + - '*.darkchestofwonders.us' + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: zerossl + privateKey: + algorithm: ECDSA + rotationPolicy: Always