streams-manifests/argocd-nginx/base/argocd-cert-issuer.yaml

20 lines
481 B
YAML
Raw Permalink Normal View History

2024-10-16 07:37:58 +00:00
apiVersion: cert-manager.io/v1
2024-10-16 12:09:08 +00:00
kind: Issuer
2024-10-16 07:37:58 +00:00
metadata:
2024-10-16 12:41:13 +00:00
name: letsencrypt
2024-10-16 07:37:58 +00:00
spec:
acme:
2024-10-16 12:41:13 +00:00
# The ACME server URL
2024-10-16 07:37:58 +00:00
server: https://acme-v02.api.letsencrypt.org/directory
2024-10-16 12:41:13 +00:00
# Email address used for ACME registration
email: drive@sunet.se
# Name of a secret used to store the ACME account private key
2024-10-16 07:37:58 +00:00
privateKeySecretRef:
2024-10-16 12:41:13 +00:00
name: letsencrypt
# Enable the HTTP-01 challenge provider
2024-10-16 07:37:58 +00:00
solvers:
2024-10-16 12:41:13 +00:00
- http01:
2024-10-16 12:19:48 +00:00
ingress:
2024-10-16 14:05:02 +00:00
class: public
2024-10-16 12:41:13 +00:00