aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/service.yaml
blob: 81d76814c040fc2aab1aba1aaa674fc463dde7d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apiVersion: v1
kind: Service
metadata:
  name: showreadiness
  labels:
    app: showreadiness
spec:
  type: ClusterIP
  sessionAffinity: None
  ports:
  - name: showreadiness
    port: 6080 # External Port
    targetPort: 80 # Port inside the service 
    protocol: TCP 
  selector:
    app: showreadiness