- Multi-architecture Docker image (ARM64 + AMD64) - Kubernetes manifests for 3-replica deployment - Traefik ingress configuration - NGINX Proxy Manager integration - ConfigMap-based configuration - Automated build and deployment scripts - Session monitoring tools
45 lines
964 B
YAML
45 lines
964 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: socktop-webterm
|
|
labels:
|
|
app: socktop-webterm
|
|
spec:
|
|
ingressClassName: traefik
|
|
defaultBackend:
|
|
service:
|
|
name: socktop-webterm
|
|
port:
|
|
number: 8082
|
|
rules:
|
|
- host: socktop.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: socktop-webterm
|
|
port:
|
|
number: 8082
|
|
path: /
|
|
pathType: Prefix
|
|
- host: www.socktop.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: socktop-webterm
|
|
port:
|
|
number: 8082
|
|
path: /
|
|
pathType: Prefix
|
|
- host: origin.socktop.io
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: socktop-webterm
|
|
port:
|
|
number: 8082
|
|
path: /
|
|
pathType: Prefix
|