Issue-Id: OOM-113
Change-Id: Ic91394e18e52b8225d2e31c0cc4ec3e752b94d33
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
       nodePort: {{ .Values.discoveryNodePort }}
   selector:
     app: msb-discovery
+  type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: msb-iag
+  labels:
+    app: msb-iag
+spec:
+  clusterIP: "{{ .Values.iagClusterIP }}"
+  ports:
+    - port: {{ .Values.iagPort }}
+      nodePort: {{ .Values.iagNodePort }}
+  selector:
+    app: msb-iag
+  type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: msb-eag
+  labels:
+    app: msb-eag
+spec:
+  clusterIP: "{{ .Values.eagClusterIP }}"
+  ports:
+    - port: {{ .Values.eagPort }}
+      nodePort: {{ .Values.eagNodePort }}
+  selector:
+    app: msb-eag
   type: NodePort
\ No newline at end of file
 
 consulClusterIP: 10.43.6.204
-discoveryClusterIP: 10.43.6.205
 consulPort: 8500
 consulNodePort: 30500
+
+discoveryClusterIP: 10.43.6.205
 discoveryPort: 10081
 discoveryNodePort: 30081
 discoveryReplicas: 1
-iagReplicas: 1
-eagReplicas: 1
+
+iagClusterIP: 10.43.6.206
 iagPort: 80
 iagNodePort: 30080
+iagReplicas: 1
+
+eagClusterIP: 10.43.6.207
 eagPort: 80
 eagNodePort: 30082
+eagReplicas: 1
+
 pullPolicy: IfNotPresent
\ No newline at end of file