Use domain name instead of IP for consul 79/11479/3
authorHuabingZhao <zhao.huabing@zte.com.cn>
Sat, 9 Sep 2017 07:59:00 +0000 (15:59 +0800)
committerrui hu <hu.rui2@zte.com.cn>
Mon, 11 Sep 2017 09:35:31 +0000 (09:35 +0000)
Issue-Id: OOM-113
Change-Id: I41e6f72337a15c1d07b444b09171204d8eb378ec
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
kubernetes/msb/templates/all-services.yaml
kubernetes/msb/templates/msb-discovery-deployment.yaml
kubernetes/msb/templates/msb-eag-deployment.yaml
kubernetes/msb/templates/msb-iag-deployment.yaml
kubernetes/msb/values.yaml

index 4ec4656..aeb4f5e 100644 (file)
@@ -6,7 +6,6 @@ metadata:
   labels:
     app: msb-consul
 spec:
-  clusterIP: "{{ .Values.consulClusterIP }}"
   ports:
     - port: {{ .Values.consulPort }}
       nodePort: {{ .Values.consulNodePort }}
@@ -35,29 +34,27 @@ kind: Service
 metadata:
   name: msb-iag
   namespace: "{{ .Values.nsPrefix }}-msb"
-  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
-  namespace: "{{ .Values.nsPrefix }}-msb"
-  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
+    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
\ No newline at end of file
index 24cb3a5..3af9e8f 100644 (file)
@@ -21,7 +21,7 @@ spec:
         name: "msb-discovery"
         env:
         - name: CONSUL_IP
-          value: "{{ .Values.consulClusterIP }}"
+          value: msb-consul.{{ .Values.nsPrefix }}-msb
         ports:
         - containerPort: {{ .Values.discoveryPort }}
           name: msb-discovery
index d1c20ad..db703d9 100644 (file)
@@ -21,7 +21,7 @@ spec:
         name: "msb-eag"
         env:
         - name: CONSUL_IP
-          value: "{{ .Values.consulClusterIP}}"
+          value:  msb-consul.{{ .Values.nsPrefix }}-msb
         - name: SDCLIENT_IP
           value: "{{ .Values.discoveryClusterIP}}"
         - name: ROUTE_LABELS
index 3ab9f9a..3f82e33 100644 (file)
@@ -21,7 +21,7 @@ spec:
         name: "msb-iag"
         env:
         - name: CONSUL_IP
-          value: "{{ .Values.consulClusterIP}}"
+          value: msb-consul.{{ .Values.nsPrefix }}-msb
         - name: SDCLIENT_IP
           value: "{{ .Values.discoveryClusterIP}}"
         - name: ROUTE_LABELS
index 6927f1d..01f1696 100644 (file)
@@ -5,21 +5,19 @@ image:
   discovery: nexus3.onap.org:10001/onap/msb/msb_discovery:latest
   apigateway: nexus3.onap.org:10001/onap/msb/msb_discovery:latest
 
-consulClusterIP: 10.43.6.204
 consulPort: 8500
 consulNodePort: 30500
 
+# Should remove cluster IP after domain name is supported by API gateway
 discoveryClusterIP: 10.43.6.205
 discoveryPort: 10081
 discoveryNodePort: 30081
 discoveryReplicas: 1
 
-iagClusterIP: 10.43.6.206
 iagPort: 80
 iagNodePort: 30080
 iagReplicas: 1
 
-eagClusterIP: 10.43.6.207
 eagPort: 80
 eagNodePort: 30082
 eagReplicas: 1
\ No newline at end of file