aboutsummaryrefslogtreecommitdiff
path: root/apps/hello-world/service.yaml
blob: c93f4940113ac6d7e6bfa0b8e4c421e71c6125e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
apiVersion: v1
kind: Service
metadata:
  name: hello-world
  namespace: hello-world
spec:
  selector:
    app: hello-world
  ports:
  - port: 80
    targetPort: 80
  type: ClusterIP
...