Replace nip.io hosts with pubmedis.com domain and add letsencrypt-prod ClusterIssuer for automated certificate management. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
656 B
YAML
26 lines
656 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: pubmedis
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/proxy-body-size: "50m"
|
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "120"
|
|
nginx.ingress.kubernetes.io/proxy-send-timeout: "120"
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
ingressClassName: nginx
|
|
tls:
|
|
- hosts:
|
|
- pubmedis.com
|
|
secretName: pubmedis-tls
|
|
rules:
|
|
- host: pubmedis.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: pubmedis
|
|
port:
|
|
name: http |