1apiVersion: v1 2kind: Service 3metadata: 4 name: nginxsvc 5 labels: 6 app: nginx 7spec: 8 ports: 9 - port: 80 10 protocol: TCP 11 name: http 12 selector: 13 app: nginx 14
View as plain text