From: wrider Date: Thu, 27 Jun 2019 01:25:21 +0000 (-0400) Subject: Fixes for ric-aux X-Git-Tag: 0.0.2~82 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F21%2F421%2F4;p=it%2Fdep.git Fixes for ric-aux Incorporating fixes identified during 06/26 testing. Change-Id: I24d5ce8d1d137b0df0173b4cb9ce788ec8a57fc9 Signed-off-by: wrider --- diff --git a/RECIPE_EXAMPLE/RIC_AUX_RECIPE_EXAMPLE b/RECIPE_EXAMPLE/RIC_AUX_RECIPE_EXAMPLE index cb494e4b..2aa79e0e 100644 --- a/RECIPE_EXAMPLE/RIC_AUX_RECIPE_EXAMPLE +++ b/RECIPE_EXAMPLE/RIC_AUX_RECIPE_EXAMPLE @@ -55,5 +55,5 @@ global: dashboard: image: name:: ric-dash-be - tag: 1.0.0-SNAPSHOT + tag: 1.0.4 diff --git a/RECIPE_EXAMPLE/RIC_PLATFORM_RECIPE_EXAMPLE b/RECIPE_EXAMPLE/RIC_PLATFORM_RECIPE_EXAMPLE index 7d704757..dd547cd3 100644 --- a/RECIPE_EXAMPLE/RIC_PLATFORM_RECIPE_EXAMPLE +++ b/RECIPE_EXAMPLE/RIC_PLATFORM_RECIPE_EXAMPLE @@ -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: diff --git a/ric-aux/80-Auxiliary-Functions/helm/dashboard/values.yaml b/ric-aux/80-Auxiliary-Functions/helm/dashboard/values.yaml index eb946460..e3a129de 100644 --- a/ric-aux/80-Auxiliary-Functions/helm/dashboard/values.yaml +++ b/ric-aux/80-Auxiliary-Functions/helm/dashboard/values.yaml @@ -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 diff --git a/ric-aux/80-Auxiliary-Functions/helm/message-router/templates/service.yaml b/ric-aux/80-Auxiliary-Functions/helm/message-router/templates/service.yaml index dfd90b28..eac67fcd 100644 --- a/ric-aux/80-Auxiliary-Functions/helm/message-router/templates/service.yaml +++ b/ric-aux/80-Auxiliary-Functions/helm/message-router/templates/service.yaml @@ -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", diff --git a/ric-platform/50-RIC-Platform/bin/install b/ric-platform/50-RIC-Platform/bin/install index eee5e52c..f50435ee 100755 --- a/ric-platform/50-RIC-Platform/bin/install +++ b/ric-platform/50-RIC-Platform/bin/install @@ -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