SchlundTech Webhook is a lightweight, production-ready webhook service designed to automate and secure domain certification workflows with SchlundTech. Built for Kubernetes and cloud-native environments, it seamlessly integrates with your CI/CD pipelines and supports robust configuration for enterprise-grade deployments.
docker pull reaventech/schlundtech-webhook:latest
docker run -d \
-e SCHLUNDTECH_API_USER=youruser \
-e SCHLUNDTECH_API_PASSWORD=yourpassword \
-e WEBHOOK_PORT=8443 \
-p 8443:8443 \
reaventech/schlundtech-webhook:latest
apiVersion: apps/v1
kind: Deployment
metadata:
name: schlundtech-webhook
spec:
replicas: 1
template:
spec:
containers:
- name: schlundtech-webhook
image: reaventech/schlundtech-webhook:latest
env:
- name: SCHLUNDTECH_API_USER
valueFrom:
secretKeyRef:
name: schlundtech-credentials
key: user
- name: SCHLUNDTECH_API_PASSWORD
valueFrom:
secretKeyRef:
name: schlundtech-credentials
key: password
ports:
- containerPort: 8443
| Environment Variable | Description | Required | Default |
|---|---|---|---|
SCHLUNDTECH_API_USER | SchlundTech API username | Yes | - |
SCHLUNDTECH_API_PASSWORD | SchlundTech API password | Yes | - |
WEBHOOK_PORT | Webhook listening port | No | 8443 |
LOG_LEVEL | Logging level (info, debug, etc) | No | info |
A Helm chart is nedded for streamlined Kubernetes deployments.
/metrics endpoint./healthz.Made with ❤️ by the ReavenTech DevOps Team
Content type
Image
Digest
sha256:ec8b9e46a…
Size
24.1 MB
Last updated
over 1 year ago
docker pull reaventech/schlundtech-webhook