Fixes for ric-aux 21/421/4
authorwrider <lji@research.att.com>
Thu, 27 Jun 2019 01:25:21 +0000 (21:25 -0400)
committerLusheng Ji <lji@research.att.com>
Thu, 27 Jun 2019 03:16:24 +0000 (03:16 +0000)
Incorporating fixes identified during 06/26 testing.

Change-Id: I24d5ce8d1d137b0df0173b4cb9ce788ec8a57fc9
Signed-off-by: wrider <lji@research.att.com>
RECIPE_EXAMPLE/RIC_AUX_RECIPE_EXAMPLE
RECIPE_EXAMPLE/RIC_PLATFORM_RECIPE_EXAMPLE
ric-aux/80-Auxiliary-Functions/helm/dashboard/values.yaml
ric-aux/80-Auxiliary-Functions/helm/message-router/templates/service.yaml
ric-platform/50-RIC-Platform/bin/install

index cb494e4..2aa79e0 100644 (file)
@@ -55,5 +55,5 @@ global:
 dashboard:
   image:
     name:: ric-dash-be
-    tag: 1.0.0-SNAPSHOT
+    tag: 1.0.4
 
index 7d70475..dd547cd 100644 (file)
@@ -53,8 +53,8 @@ global:
 # xApp Manager 
 appmgr:
   image:
-    name: ric-plt-appmgr
-    tag: 0.1.3
+    name: appmgr
+    tag: 1.0.4
 
 # DBAAS 
 dbaas:
index eb94646..e3a129d 100644 (file)
@@ -36,10 +36,10 @@ dashboard:
   # config URLs must be specified at deployment
   properties:
     a1med:
-      url:  http://values-yaml-default-A1-URL
+      url:  http://ricplt-entry/a1mediator
     anrxapp:
-      url:  http://values-yaml-default-ANR-URL
+      url:  http://ricxapp-entry/anr
     e2mgr:
-      url:  http://values-yaml-default-E2-URL
+      url:  http://ricplt-entry/e2mgr
     xappmgr:
-      url:  http://values-yaml-default-MGR-URL
+      url:  http://ricplt-entry/appmgr
\ No newline at end of file
index dfd90b2..eac67fc 100644 (file)
@@ -16,7 +16,7 @@
 apiVersion: v1
 kind: Service
 metadata:
-  name: {{ include "common.servicename" .  }}
+  name: {{ include "common.fullname" .  }}
   namespace: {{ include "common.namespace" . }}
   labels:
     app: {{ include "common.name" . }}
@@ -26,7 +26,7 @@ metadata:
   annotations:
     msb.onap.org/service-info: '[
       {
-          "serviceName": "{{ include "common.servicename" . }}",
+          "serviceName": "{{ include "common.fullname" . }}",
           "version": "v1",
           "url": "/",
           "protocol": "REST",
index eee5e52..f50435e 100755 (executable)
@@ -47,6 +47,8 @@ echo "Helm Release Name: $RELEASE_NAME"
 
 COMMON_CHART_VERSION=$(cat $DIR/../helm/common/Chart.yaml | grep version | awk '{print $2}')
 
+helm repo remove local
+
 helm package -d /tmp $DIR/../helm/common
 
 
@@ -76,4 +78,4 @@ for component in $RICPLT_COMPONENTS; do
   else
   helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-$component" $DIR/../helm/$component
   fi
-done
+done
\ No newline at end of file