cert-manager: Add certificate for chmod777.sh
parent
ce09f48870
commit
807c9347ef
|
@ -38,6 +38,11 @@ data:
|
||||||
key: certificates/darkchestofwonders.us.key
|
key: certificates/darkchestofwonders.us.key
|
||||||
cert: certificates/darkchestofwonders.us.crt
|
cert: certificates/darkchestofwonders.us.crt
|
||||||
bundle: certificates/darkchestofwonders.us.pem
|
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: |
|
known-hosts-command.ssh_config: |
|
||||||
KnownHostsCommand /usr/bin/curl -fsL https://files.pyrocufflink.blue/ssh_known_hosts
|
KnownHostsCommand /usr/bin/curl -fsL https://files.pyrocufflink.blue/ssh_known_hosts
|
||||||
|
|
||||||
|
@ -59,6 +64,7 @@ rules:
|
||||||
- hatchchat-cert
|
- hatchchat-cert
|
||||||
- tabitha-cert
|
- tabitha-cert
|
||||||
- dcow-cert
|
- dcow-cert
|
||||||
|
- chmod777-cert
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
|
|
@ -88,3 +88,21 @@ spec:
|
||||||
privateKey:
|
privateKey:
|
||||||
algorithm: ECDSA
|
algorithm: ECDSA
|
||||||
rotationPolicy: Always
|
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
|
||||||
|
|
Loading…
Reference in New Issue