diff --git a/cert-manager/cert-exporter.yaml b/cert-manager/cert-exporter.yaml index f360336..63de066 100644 --- a/cert-manager/cert-exporter.yaml +++ b/cert-manager/cert-exporter.yaml @@ -38,6 +38,11 @@ data: key: certificates/darkchestofwonders.us.key cert: certificates/darkchestofwonders.us.crt bundle: certificates/darkchestofwonders.us.pem + - name: chmod777-cert + namespace: default + key: certificates/chmod777.sh.key + cert: certificates/chmod777.sh.crt + bundle: certificates/chmod777.sh.pem known-hosts-command.ssh_config: | KnownHostsCommand /usr/bin/curl -fsL https://files.pyrocufflink.blue/ssh_known_hosts @@ -59,6 +64,7 @@ rules: - hatchchat-cert - tabitha-cert - dcow-cert + - chmod777-cert --- apiVersion: rbac.authorization.k8s.io/v1 diff --git a/cert-manager/certificates.yaml b/cert-manager/certificates.yaml index 5b4f480..d24c0ec 100644 --- a/cert-manager/certificates.yaml +++ b/cert-manager/certificates.yaml @@ -88,3 +88,21 @@ spec: privateKey: algorithm: ECDSA rotationPolicy: Always + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: chmod777-cert +spec: + secretName: chmod777-cert + dnsNames: + - chmod777.sh + - '*.chmod777.sh' + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: zerossl + privateKey: + algorithm: ECDSA + rotationPolicy: Always