Issue-Id: OOM-113, MSB-26
Change-Id: If365e75c7ccf7de902f771ffdd2db3b1566b98b6
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
 spec:
   clusterIP: "{{ .Values.consulClusterIP }}"
   ports:
-    - port: 8500
+    - port: {{ .Values.consulPort }}
       nodePort: "{{ .Values.consulNodePort }}"
   selector:
     app: msb-consul
 
         image: consul
         name: "msb-consul"
         ports:
-        - containerPort: 8500
+        - containerPort: {{ .Values.consulPort }}
           name: msb-consul
         readinessProbe:
           tcpSocket:
-            port: 8500
+            port: {{ .Values.consulPort }}
           initialDelaySeconds: 5
           periodSeconds: 10
         imagePullPolicy: "{{ .Values.pullPolicy }}"
\ No newline at end of file
 
         - name: CONSUL_IP
           value: "{{ .Values.consulClusterIP }}"
         ports:
-        - containerPort: 10081
+        - containerPort: {{ .Values.discoveryPort }}
           name: msb-discovery
         readinessProbe:
           tcpSocket:
-            port: 10081
+            port: {{ .Values.discoveryPort }}
           initialDelaySeconds: 5
           periodSeconds: 10
         imagePullPolicy: "{{ .Values.pullPolicy }}"
 
--- /dev/null
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: msb-eag
+spec:
+  replicas: 2
+  selector:
+    matchLabels:
+      app: msb-eag
+  template:
+    metadata:
+      labels:
+        app: msb-eag
+      name: msb-eag
+    spec:
+      hostname: msb-eag
+      containers:
+      - args:
+        image:  nexus3.onap.org:10001/onap/msb/msb_apigateway
+        name: "msb-eag"
+        env:
+        - name: CONSUL_IP
+          value: "{{ .Values.consulClusterIP}}"
+        - name: SDCLIENT_IP
+          value: "{{ .Values.discoveryClusterIP}}"
+        - name: ROUTE_LABELS
+          value: "visualRange:0"
+        ports:
+        - containerPort: {{ .Values.eagPort }}
+          name: msb-eag
+        readinessProbe:
+          tcpSocket:
+            port: {{ .Values.eagPort }}
+          initialDelaySeconds: 5
+          periodSeconds: 10
+        imagePullPolicy: "{{ .Values.pullPolicy}}"
+
+
 
 consulClusterIP: 10.43.6.204
 discoveryClusterIP: 10.43.6.205
+consulPort: 8500
 consulNodePort: 30500
+discoveryPort: 10081
 discoveryNodePort: 30081
+iagPort: 80
+iagNodePort: 30080
+eagPort: 80
+eagNodePort: 30082
 pullPolicy: IfNotPresent
\ No newline at end of file