cert-manager: Add certificate for tabitha.biz
parent
2305187bbd
commit
3d1f1fd611
|
@ -28,6 +28,11 @@ data:
|
||||||
key: certificates/hatch.chat.key
|
key: certificates/hatch.chat.key
|
||||||
cert: certificates/hatch.chat.crt
|
cert: certificates/hatch.chat.crt
|
||||||
bundle: certificates/hatch.chat.pem
|
bundle: certificates/hatch.chat.pem
|
||||||
|
- name: tabitha-cert
|
||||||
|
namespace: default
|
||||||
|
key: certificates/tabitha.biz.key
|
||||||
|
cert: certificates/tabitha.biz.crt
|
||||||
|
bundle: certificates/tabitha.biz.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
|
||||||
|
|
||||||
|
@ -47,6 +52,7 @@ rules:
|
||||||
- pyrocufflink-cert
|
- pyrocufflink-cert
|
||||||
- dustinhatchname-cert
|
- dustinhatchname-cert
|
||||||
- hatchchat-cert
|
- hatchchat-cert
|
||||||
|
- tabitha-cert
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
|
|
@ -52,3 +52,21 @@ spec:
|
||||||
privateKey:
|
privateKey:
|
||||||
algorithm: ECDSA
|
algorithm: ECDSA
|
||||||
rotationPolicy: Always
|
rotationPolicy: Always
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: Certificate
|
||||||
|
metadata:
|
||||||
|
name: tabitha-cert
|
||||||
|
spec:
|
||||||
|
secretName: tabitha-cert
|
||||||
|
dnsNames:
|
||||||
|
- tabitha.biz
|
||||||
|
- '*.tabitha.biz'
|
||||||
|
issuerRef:
|
||||||
|
group: cert-manager.io
|
||||||
|
kind: ClusterIssuer
|
||||||
|
name: zerossl
|
||||||
|
privateKey:
|
||||||
|
algorithm: ECDSA
|
||||||
|
rotationPolicy: Always
|
||||||
|
|
Loading…
Reference in New Issue