streams-manifests/argocd-nginx/base/argocd-certificate.yaml
2024-10-16 12:39:50 +02:00

23 lines
638 B
YAML

apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: tls-secret
namespace: argocd
spec:
# Secret names are always required.
secretName: tls-secret
duration: 2160h # 90d
renewBefore: 360h # 15d
# At least one of commonName (possibly through literalSubject), dnsNames, uris, emailAddresses, ipAddresses or otherNames is required.
dnsNames:
- argocd-test.streams.sunet.se
# Issuer references are always required.
issuerRef:
name: ca-issuer
# We can reference ClusterIssuers by changing the kind here.
# The default value is Issuer (i.e. a locally namespaced Issuer)
kind: ClusterIssuer