29 lines
770 B
YAML
29 lines
770 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: prod-panel-bk-ig
|
|
namespace: prod-panel-bk-ns
|
|
annotations:
|
|
service.beta.kubernetes.io/do-loadbalancer-enable-proxy-protocol: "true"
|
|
service.beta.kubernetes.io/do-loadbalancer-internal: "true"
|
|
service.beta.kubernetes.io/do-loadbalancer-network: "INTERNAL"
|
|
nginx.ingress.kubernetes.io/enable-access-log: "true"
|
|
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: pb.articulacion.com.co
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: "/"
|
|
backend:
|
|
service:
|
|
name: prod-panel-bk-sr
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- pb.articulacion.com.co
|
|
secretName: prod-panel-bk-sc
|