MSB external api gateway service k8s deployment 43/9043/2
authorHuabingZhao <zhao.huabing@zte.com.cn>
Tue, 29 Aug 2017 07:30:10 +0000 (15:30 +0800)
committerHuabingZhao <zhao.huabing@zte.com.cn>
Tue, 29 Aug 2017 07:35:36 +0000 (15:35 +0800)
Issue-Id: OOM-113, MSB-26
Change-Id: If365e75c7ccf7de902f771ffdd2db3b1566b98b6
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
kubernetes/msb/templates/all-services.yaml
kubernetes/msb/templates/msb-consul-deployment.yaml
kubernetes/msb/templates/msb-discovery-deployment.yaml
kubernetes/msb/templates/msb-eag-deployment.yaml [new file with mode: 0644]
kubernetes/msb/values.yaml

index ea66c31..80892fe 100644 (file)
@@ -7,7 +7,7 @@ metadata:
 spec:
   clusterIP: "{{ .Values.consulClusterIP }}"
   ports:
-    - port: 8500
+    - port: {{ .Values.consulPort }}
       nodePort: "{{ .Values.consulNodePort }}"
   selector:
     app: msb-consul
index 0d98896..1dbbe8f 100644 (file)
@@ -19,11 +19,11 @@ spec:
         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
index e4736b5..a5d014a 100644 (file)
@@ -22,11 +22,11 @@ spec:
         - 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 }}"
diff --git a/kubernetes/msb/templates/msb-eag-deployment.yaml b/kubernetes/msb/templates/msb-eag-deployment.yaml
new file mode 100644 (file)
index 0000000..45b8879
--- /dev/null
@@ -0,0 +1,38 @@
+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}}"
+
+
index eba6612..8877000 100644 (file)
@@ -1,5 +1,11 @@
 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