[ROBOT] ADD HTTPS based BULKPM test cases that use helm based components
[testsuite.git] / robot / assets / helm / pm-https-server / templates / service.yaml
1 apiVersion: v1
2 kind: Service
3 metadata:
4   name: {{ include "pmhttpsserver.fullname" . }}
5   namespace: {{ include "pmhttpsserver.namespace" . }}
6   labels:
7     {{ include "pmhttpsserver.labels" . | nindent 4 }}
8 spec:
9   type: NodePort
10   ports:
11     - port: 80
12       targetPort: http
13       protocol: TCP
14       name: http
15     - port: 8080
16       targetPort: http2
17       protocol: TCP
18       name: http2
19     - port: 443
20       targetPort: https
21       protocol: TCP
22       name: https
23   selector:
24     {{ include "pmhttpsserver.selectorLabels" . | nindent 4 }}