blob: f7526089842d47d46b0fcc43fcda2ae44e4acdbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
apiVersion: v1
kind: Service
metadata:
name: msb-consul
namespace: "{{ .Values.nsPrefix }}-msb"
labels:
app: msb-consul
spec:
ports:
- port: {{ .Values.consulPort }}
nodePort: {{ .Values.consulNodePort }}
selector:
app: msb-consul
type: NodePort
---
apiVersion: v1
kind: Service
metadata:
name: msb-discovery
namespace: "{{ .Values.nsPrefix }}-msb"
labels:
app: msb-discovery
spec:
clusterIP: "{{ .Values.discoveryClusterIP }}"
ports:
- port: {{ .Values.discoveryPort }}
nodePort: {{ .Values.discoveryNodePort }}
selector:
app: msb-discovery
type: NodePort
---
apiVersion: v1
kind: Service
metadata:
name: msb-iag
namespace: "{{ .Values.nsPrefix }}-msb"
labels:
app: msb-iag
spec:
ports:
- port: {{ .Values.iagPort }}
nodePort: {{ .Values.iagNodePort }}
selector:
app: msb-iag
type: NodePort
---
apiVersion: v1
kind: Service
metadata:
name: msb-eag
namespace: "{{ .Values.nsPrefix }}-msb"
labels:
app: msb-eag
spec:
ports:
- port: {{ .Values.eagPort }}
nodePort: {{ .Values.eagNodePort }}
selector:
app: msb-eag
type: NodePort
|