码迷,mamicode.com
首页 > 其他好文 > 详细

service代理模式及负载均衡

时间:2019-07-09 16:45:19      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:clu   one   Kubernete   run   http   ext   targe   aml   protocol   

[root@k8s-master ~]# vim service.yaml

apiVersion: v1

kind: Service

metadata:

  name: my-service

spec:

  selector:

    app: MyApp

  ports:

  - name: http

    protocol: TCP

    port: 80

    targetPort: 80

  - name: https

    protocol: TCP

    port: 443

targetPort: 443

 

[root@k8s-master ~]# kubectl get all

NAME                TYPE        CLUSTER-IP    EXTERNAL-IP   PORT(S)   AGE

svc/kubernetes      ClusterIP   10.10.10.1    <none>        443/TCP   5d

svc/nginx-service   ClusterIP   10.10.10.85   <none>        88/TCP    20h

 

[root@k8s-master ~]# kubectl create -f service.yaml

[root@k8s-master ~]# kubectl get svc

NAME            TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)          AGE

kubernetes      ClusterIP   10.10.10.1     <none>        443/TCP          5d

my-service      ClusterIP   10.10.10.212   <none>        80/TCP,443/TCP   24s

nginx-service   ClusterIP   10.10.10.85    <none>        88/TCP           20h

 

查看pod的标签,用标签来识别,并代理到后端的服务上

[root@k8s-master ~]# kubectl get pod --show-labels -o wide

nginx-pod                           1/1       Running   1          17h       172.17.80.4   192.168.30.23   app=nginx

 

修改我们创建的my-service,把标签改为nginx,然后我们访问我们的my-service分配的clusterIP就能直接代理到后端的Nginx上了

[root@k8s-master ~]# kubectl edit svc/my-service

 

访问10.10.10.212:80

[root@k8s-node1 ~]# curl 10.10.10.212:80

<!DOCTYPE html>

<html>

<head>

<title>Welcome to nginx!</title>

 

[root@k8s-node2 ~]# curl 10.10.10.212:80

<!DOCTYPE html>

<html>

<head>

<title>Welcome to nginx!</title>

 

service代理模式及负载均衡

标签:clu   one   Kubernete   run   http   ext   targe   aml   protocol   

原文地址:https://www.cnblogs.com/zc1741845455/p/11158298.html

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