This patch introduces a new structure of the it/dep repo.
[it/dep.git] / ric-platform / 50-RIC-Platform / etc / ric.conf
old mode 100755 (executable)
new mode 100644 (file)
similarity index 82%
rename from ricplt/helm_reset.sh
rename to ric-platform/50-RIC-Platform/etc/ric.conf
index c604c07..29339d8
@@ -1,5 +1,3 @@
-#!/bin/bash
-
 ################################################################################
 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
 #   Copyright (c) 2019 Nokia.                                                  #
 ################################################################################
 
 
-SERVEPID=$(ps aux |grep "helm[ +]serve" | sed 's/\s\s*/ /g' | cut -f2 -d ' ')
-if [ ! -z $SERVEPID ]; then
-  echo "Stopping running helm serve process $SERVEPID"
-  kill -9 $SERVEPID
-fi
+# helm_release_name defines the release name helm will use to deploy RIC
+# It will be overrided by RICPLT_RELEASE_NAME
+helm_release_name=r0
+
+# namespace defines the namespace that helm will use to deploy RIC
+# It will be overrided by RICPLT_NAMESPACE
+namespace=ricplt
+
 
-rm -rf ~/.helm
-find . -name "common-*" | xargs rm
-helm init --client-only