kubenet service NodePort

2021/5/22 14:25:24

本文主要是介绍kubenet service NodePort,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

2.NodePort

在集群内部的IP基础上,在集群的每一个节点的端口上开放这个服务 

apiVersion: v1
kind: Service
metadata:
  labels:
    app: nginx
  name: nginx-deployment
spec:
  ports:
  - port: 80
    name: nginx-service80
    protocol: TCP
    targetPort: 80
    nodePort: 30001  
  selector:
    app: nginx
  type: NodePort

nodePort 主机上对外提供的服务端口:30001

[root@master Chapter6]# cat 6-5nodeport.yaml 
apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx
spec:
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: registry.cn-beijing.aliyuncs.com/qingfeng666/nginx
        resources:
          limits:
            memory: "128Mi"
            cpu: "500m&#



这篇关于kubenet service NodePort的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程