apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment #Deployment名称 labels: app: nginx #Deployment标签定义 spec: replicas: 1 #副本数 selector: #标签选择器 matchLabels: #匹配标签 app: nginx #选择包含标签 app: nginx 的 Pod template: #Pod模板 metadata: labels: app: nginx #Pod标签 spec: containers: - name: nginx #容器名称 image: xxx.com/nginx:1.20.1 #镜像名称和版本 ports: - containerPort: 80 #指定容器的端口 imagePullSecrets: #从harbor摘取镜像需要配置 - name: harbor --- apiVersion: v1 #api版本 kind: Service #资源类型 metadata: name: nginx-service #Service 的名称 labels: #Service 自己的标签 app: nginx #为该 Service 设置 key 为 app,value 为 nginx 的标签 spec: #这是关于该 Service 的定义,描述了 Service 如何选择 Pod,如何被访问 selector: #标签选择器 app: nginx #选择包含标签 app:nginx 的 Pod ports: - name: nginx-port #端口的名字 protocol: TCP #协议类型 TCP/UDP port: 80 #集群内的其他容器组可通过 80 端口访问 Service nodePort: 32600 #通过任意节点的 32600 端口访问 Service targetPort: 80 #将请求转发到匹配 Pod 的 80 端口 type: NodePort #Serive的类型,ClusterIP/NodePort/LoaderBalancer
标签:Service,创建,app,Deployment,nginx,标签,Pod,80 From: https://www.cnblogs.com/hm1825/p/18086828