mirror of
https://github.com/outbackdingo/homelab.git
synced 2026-01-28 10:19:12 +00:00
28 lines
499 B
YAML
28 lines
499 B
YAML
apiVersion: cert-manager.io/v1
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: selfsigned-issuer
|
|
spec:
|
|
selfSigned: {}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: postgres-certificate
|
|
labels:
|
|
cnpg.io/reload: ""
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: postgres-certificate
|
|
spec:
|
|
secretName: postgres-certificate
|
|
usages:
|
|
- client auth
|
|
commonName: streaming_replica
|
|
issuerRef:
|
|
name: selfsigned-issuer
|
|
kind: ClusterIssuer
|
|
group: cert-manager.io
|