当前位置:   article > 正文

ingress-nginx 实现内部局域网的url转发配置_ingress转发内部接口

ingress转发内部接口

ingress-nginx 实现内部局域网的url转发配置

实现目的:

在 192.168.4.4 物理服务器上部署 WEB服务器 端口80.
外网IP80端口直接指向ingress-nginx。
域名指向 ingress-nginx ip 可以访问到局域网内物理搭建的web服务器,而非容器。
在这里插入图片描述

实例yaml

主要利用自定义Endpoints资源,指向局域网服务器。

apiVersion: v1
kind: Endpoints
metadata:
  name: proxy-ingress
subsets:
- addresses:
  - ip: 192.168.4.4
  ports:
  - port: 80
    protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
  labels:
    app: proxy-ingress
  name: proxy-ingress
spec:
  ports:
  - port: 80
    targetPort: 80
    protocol: TCP
  sessionAffinity: None
  type: ClusterIP
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: proxy-ingress
spec:
  rules:
    - host: proxy.abc.com
      http:
        paths:
          - path: /
            backend:
              serviceName: proxy-ingress
              servicePort: 80
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/178765?site
推荐阅读
相关标签
  

闽ICP备14008679号