This commit is contained in:
2024-04-10 14:38:08 +02:00
parent 4209b684a8
commit 031dfec5d2
3 changed files with 24 additions and 2 deletions

View File

@ -0,0 +1,21 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: dns-challenge-illium
rules:
- apiGroups: ["acme.steffenillium.de"] # "" indicates the core API group
resources: ["ionos"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: dns-challenge-illium-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: dns-challenge-illium
subjects:
- kind: ServiceAccount
name: cert-manager
namespace: cert-manager

View File

@ -33,7 +33,7 @@ metadata:
spec: spec:
acme: acme:
# The ACME server URL # The ACME server URL
server: https://acme-v02.api.letsencrypt.org/ server: https://acme-v02.api.letsencrypt.org/directory
# Email address used for ACME registration # Email address used for ACME registration
email: steffen.illium@gmail.com email: steffen.illium@gmail.com
# Name of a secret used to store the ACME account private key # Name of a secret used to store the ACME account private key
@ -43,7 +43,7 @@ spec:
solvers: solvers:
- dns01: - dns01:
webhook: webhook:
# groupName: acme.fabmade.de groupName: acme.
solverName: ionos solverName: ionos
config: config:
apiUrl: https://api.hosting.ionos.com/dns/v1 apiUrl: https://api.hosting.ionos.com/dns/v1

View File

@ -7,6 +7,7 @@ resources:
- wildcard-cert.yaml - wildcard-cert.yaml
- dns-issuer.yaml - dns-issuer.yaml
- ionos-secret-sealed.yaml - ionos-secret-sealed.yaml
- additional-roles.yaml
- https://github.com/cert-manager/cert-manager/releases/download/v1.14.4/cert-manager.crds.yaml - https://github.com/cert-manager/cert-manager/releases/download/v1.14.4/cert-manager.crds.yaml
- namespace.yaml - namespace.yaml