55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
apiVersion: cert-manager.io/v1
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: letsencrypt-staging
|
|
spec:
|
|
acme:
|
|
# The ACME server URL
|
|
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
|
# Email address used for ACME registration
|
|
email: steffen.illium@gmail.com
|
|
# Name of a secret used to store the ACME account private key
|
|
privateKeySecretRef:
|
|
name: letsencrypt-ionos-staging-key
|
|
# Enable the dns01 challenge provider
|
|
solvers:
|
|
- dns01:
|
|
webhook:
|
|
groupName: acme.steffenillium.de
|
|
solverName: ionos
|
|
config:
|
|
apiUrl: https://api.hosting.ionos.com/dns/v1
|
|
publicKeySecretRef:
|
|
key: PREFIX
|
|
name: ionos-secret
|
|
secretKeySecretRef:
|
|
key: SECRET
|
|
name: ionos-secret
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: letsencrypt-prod
|
|
spec:
|
|
acme:
|
|
# The ACME server URL
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
# Email address used for ACME registration
|
|
email: steffen.illium@gmail.com
|
|
# Name of a secret used to store the ACME account private key
|
|
privateKeySecretRef:
|
|
name: letsencrypt-ionos-key
|
|
# Enable the dns01 challenge provider
|
|
solvers:
|
|
- dns01:
|
|
webhook:
|
|
groupName: acme.steffenillium.de
|
|
solverName: ionos
|
|
config:
|
|
apiUrl: https://api.hosting.ionos.com/dns/v1
|
|
publicKeySecretRef:
|
|
key: PREFIX
|
|
name: ionos-secret
|
|
secretKeySecretRef:
|
|
key: SECRET
|
|
name: ionos-secret |