https://github.com/rkosegi/cert-manager-webhook-active24
A cert-manager ACME DNS-01 webhook that uses Active24.cz API
https://github.com/rkosegi/cert-manager-webhook-active24
acme-dns active24 cert-manager cert-manager-webhook letsencrypt
Last synced: 9 months ago
JSON representation
A cert-manager ACME DNS-01 webhook that uses Active24.cz API
- Host: GitHub
- URL: https://github.com/rkosegi/cert-manager-webhook-active24
- Owner: rkosegi
- License: apache-2.0
- Created: 2021-12-02T10:51:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T14:14:49.000Z (over 1 year ago)
- Last Synced: 2025-01-16T15:42:21.419Z (over 1 year ago)
- Topics: acme-dns, active24, cert-manager, cert-manager-webhook, letsencrypt
- Language: Go
- Homepage:
- Size: 271 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ACME webhook for Active24 DNS API
This repository contains code and supporting files for ACME webhook that interacts with [active24.cz](https://customer.active24.com/user/api) DNS API.
## Installation
### Requirements
- [cert-manager](https://cert-manager.io/docs/installation/)
- [API token](https://customer.active24.com/user/api) to access your domain
Create secret with API token
```
kubectl create secret generic active24-apikey --namespace cert-manager \
--from-literal='apiKey=abcd1234567890'
```
Create ClusterIssuer
Apply following manifest into cluster
```yaml
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: admin@somegreatdomain.tld
# Name of a secret used to store the ACME account private key
privateKeySecretRef:
name: letsencrypt-prod
solvers:
- selector:
dnsZones:
- somegreatdomain.tld
dns01:
webhook:
groupName: acme.yourdomain.tld
solverName: active24
config:
apiKeySecretRef:
name: 'active24-apikey'
key: 'apiKey'
domain: somegreatdomain.tld
```
Replace `somegreatdomain.tld` with actual domain managed by Active24
Install using helm
```
helm upgrade --install ac24 ./chart --namespace cert-manager
```
Create certificate
```yaml
kind: Certificate
apiVersion: cert-manager.io/v1
metadata:
name: my-certificate
spec:
commonName: somegreatdomain.tld
dnsNames:
- somegreatdomain.tld
- '*.somegreatdomain.tld'
issuerRef:
kind: ClusterIssuer
name: letsencrypt-prod
secretName: somegreatdomain.tld-tls
```