码迷,mamicode.com
首页 > Web开发 > 详细

kubernetes集群内通过endpoint访问外部服务

时间:2019-11-25 18:41:21      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:subsets   img   tar   yam   poi   net   mamicode   targe   info   

kubernetes内的服务访问集群外独立的服务最好通过endpoint方式,例如MySQL

1.创建mysql-service.yaml

apiVersion: v1
kind: Service
metadata:
  name: mysql-production
  namespace: ms
spec:
  ports:
    - port: 3306
      targetPort: 3306
      protocol: TCP

2.创建mysql-endpoints.yaml

kind: Endpoints
apiVersion: v1
metadata:
  name: mysql-production
  namespace: ms
subsets:
  - addresses:
      - ip: 10.255.20.176
    ports:
      - port: 3306

3.查看 service

技术图片

 

4.通过telnet测试

技术图片

 

kubernetes集群内通过endpoint访问外部服务

标签:subsets   img   tar   yam   poi   net   mamicode   targe   info   

原文地址:https://www.cnblogs.com/chadiandianwenrou/p/11929295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!