- 实用 yaml 片段
- 最简单的 nginx 测试服务
- 最简单的 nginx 测试服务
实用 yaml 片段
最简单的 nginx 测试服务
apiVersion: apps/v1kind: Deploymentmetadata:name: nginxspec:replicas: 1selector:matchLabels:app: nginxtemplate:metadata:labels:app: nginxspec:containers:- name: nginximage: nginx---apiVersion: v1kind: Servicemetadata:name: nginxlabels:app: nginxspec:type: ClusterIPports:- port: 80protocol: TCPname: httpselector:app: nginx
