22 lines
631 B
YAML
22 lines
631 B
YAML
|
|
apiVersion: cert-manager.io/v1
|
||
|
|
kind: Issuer
|
||
|
|
metadata:
|
||
|
|
name: le-cluster-issuer-http
|
||
|
|
namespace: infctl
|
||
|
|
spec:
|
||
|
|
acme:
|
||
|
|
email: marshyon@gmail.com
|
||
|
|
# We use the staging server here for testing to avoid hitting
|
||
|
|
# server: https://acme-staging-v02.api.letsencrypt.org/directory
|
||
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
||
|
|
privateKeySecretRef:
|
||
|
|
name: http-issuer-account-key
|
||
|
|
# solvers:
|
||
|
|
# - http01:
|
||
|
|
# # The ingressClass used to create the necessary ingress routes
|
||
|
|
# ingress:
|
||
|
|
# class: traefik
|
||
|
|
solvers:
|
||
|
|
- http01:
|
||
|
|
ingress:
|
||
|
|
class: traefik
|