service.yml 197 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 apiVersion: v1 kind: Service metadata: name: hello-svc labels: app: web-app spec: type: NodePort ports: - port: 8080 nodePort: 30001 protocol: TCP selector: app: web-app