22-07-2026 07:33 PM
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: abyss-webhook
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: nginx
tls:
- hosts:
- abyssmasterpiece.com
secretName: abyss-tls
rules:
- host: abyssmasterpiece.com
http:
paths:
- path: /webhook
pathType: Prefix
backend:
service:
name: abyss-webhook
port:
number: 80
apiVersion: apps/v1
kind: Deployment
metadata:
name: abyss-webhook
labels:
app: abyss-webhook
spec:
replicas: 2
selector:
matchLabels:
app: abyss-webhook
template:
metadata:
labels:
app: abyss-webhook
spec:
containers:
- name: webhook
image: ghcr.io/yourusername/abyss-webhook:latest
ports:
- containerPort: 8080
envFrom:
- secretRef:
name: abyss-secrets
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "256Mi"
cpu: "250m"