blob: 0a02b4fd0942a908da7a77678dcbde0286221caa [file] [log] [blame]
BjornMagnussonXAe0b665e2021-01-08 22:19:18 +01001apiVersion: v1
2kind: Service
3metadata:
4 name: $MR_DMAAP_KUBE_APP_NAME
5 namespace: $KUBE_ONAP_NAMESPACE
6 labels:
7 run: $MR_DMAAP_KUBE_APP_NAME
8 autotest: DMAAPMR
9spec:
10 type: ClusterIP
11 ports:
12 - port: $MR_EXTERNAL_PORT
13 targetPort: $MR_INTERNAL_PORT
14 protocol: TCP
15 name: http
16 - port: $MR_EXTERNAL_SECURE_PORT
17 targetPort: $MR_INTERNAL_SECURE_PORT
18 protocol: TCP
19 name: https
20 selector:
21 run: $MR_DMAAP_KUBE_APP_NAME
22---
23apiVersion: v1
24kind: Service
25metadata:
26 name: $MR_KAFKA_BWDS_NAME
27 namespace: $KUBE_ONAP_NAMESPACE
28 labels:
29 run: $MR_KAFKA_BWDS_NAME
30 autotest: DMAAPMR
31spec:
32 type: ClusterIP
33 ports:
34 - port: 9092
35 targetPort: 9092
36 protocol: TCP
37 name: http
38 selector:
39 run: $MR_KAFKA_BWDS_NAME
40---
41apiVersion: v1
42kind: Service
43metadata:
44 name: $MR_ZOOKEEPER_APP_NAME
45 namespace: $KUBE_ONAP_NAMESPACE
46 labels:
47 run: $MR_ZOOKEEPER_APP_NAME
48 autotest: DMAAPMR
49spec:
50 type: ClusterIP
51 ports:
52 - port: 2181
53 targetPort: 2181
54 protocol: TCP
55 name: http
56 selector:
57 run: $MR_ZOOKEEPER_APP_NAME