blob: b67808d2daf2c1001b006c95d502353136de09fe [file] [log] [blame]
HuabingZhaof2a9f562017-08-26 11:49:59 +08001apiVersion: v1
2kind: Service
3metadata:
4 name: msb-consul
5 labels:
6 app: msb-consul
7spec:
8 clusterIP: "{{ .Values.consulClusterIP }}"
9 ports:
HuabingZhao4ea06552017-08-29 15:30:10 +080010 - port: {{ .Values.consulPort }}
HuabingZhao77d44cd2017-08-30 09:30:03 +080011 nodePort: {{ .Values.consulNodePort }}
HuabingZhaof2a9f562017-08-26 11:49:59 +080012 selector:
13 app: msb-consul
HuabingZhaoc2b4fcf2017-08-29 10:48:25 +080014 type: NodePort
15---
16apiVersion: v1
17kind: Service
18metadata:
19 name: msb-discovery
20 labels:
21 app: msb-discovery
22spec:
23 clusterIP: "{{ .Values.discoveryClusterIP }}"
24 ports:
25 - port: {{ .Values.discoveryPort }}
26 nodePort: {{ .Values.discoveryNodePort }}
27 selector:
28 app: msb-discovery
HuabingZhao34690292017-08-30 13:42:11 +080029 type: NodePort
30---
31apiVersion: v1
32kind: Service
33metadata:
34 name: msb-iag
35 labels:
36 app: msb-iag
37spec:
38 clusterIP: "{{ .Values.iagClusterIP }}"
39 ports:
40 - port: {{ .Values.iagPort }}
41 nodePort: {{ .Values.iagNodePort }}
42 selector:
43 app: msb-iag
44 type: NodePort
45---
46apiVersion: v1
47kind: Service
48metadata:
49 name: msb-eag
50 labels:
51 app: msb-eag
52spec:
53 clusterIP: "{{ .Values.eagClusterIP }}"
54 ports:
55 - port: {{ .Values.eagPort }}
56 nodePort: {{ .Values.eagNodePort }}
57 selector:
58 app: msb-eag
HuabingZhaof2a9f562017-08-26 11:49:59 +080059 type: NodePort