certificate.yaml (652B)
1 apiVersion: cert-manager.io/v1 2 kind: Certificate 3 metadata: 4 name: mail.midnightthoughts.space 5 namespace: mailserver 6 spec: 7 isCA: false 8 privateKey: 9 algorithm: RSA 10 encoding: PKCS1 11 size: 2048 12 secretName: mail.midnightthoughts.space-tls 13 dnsNames: 14 - mail.midnightthoughts.space 15 issuerRef: 16 name: letsencrypt-dns 17 kind: ClusterIssuer 18 --- 19 apiVersion: cert-manager.io/v1 20 kind: Certificate 21 metadata: 22 name: rspamd.midnightthoughts.space 23 namespace: mailserver 24 spec: 25 secretName: rspamd.midnightthoughts.space-tls 26 dnsNames: 27 - rspamd.midnightthoughts.space 28 issuerRef: 29 name: letsencrypt-dns 30 kind: ClusterIssuer