summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-06-19 21:20:05 -0400
committerDR695H <dr695h@att.com>2019-06-19 21:20:05 -0400
commitae2eea7a697ba98142d0aa91d27d1a593d8891c7 (patch)
tree72c2991787801a673bd7adf5ce73602c986b3a43
parentc1b717dcde54b25b38e4280c90308c1f38945e51 (diff)
adding in homing user and password
this was previously hard coded in testsuite Issue-ID: TEST-158 Change-Id: I02530608017ad6ea99a2f243b3802436e2b44a88 Signed-off-by: DR695H <dr695h@att.com>
-rw-r--r--kubernetes/robot/resources/config/eteshare/config/integration_robot_properties.py2
-rw-r--r--kubernetes/robot/values.yaml3
2 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/robot/resources/config/eteshare/config/integration_robot_properties.py b/kubernetes/robot/resources/config/eteshare/config/integration_robot_properties.py
index 0370bbc71d..613fda2bd3 100644
--- a/kubernetes/robot/resources/config/eteshare/config/integration_robot_properties.py
+++ b/kubernetes/robot/resources/config/eteshare/config/integration_robot_properties.py
@@ -123,6 +123,8 @@ GLOBAL_MUSIC_SERVER_PORT = "8080"
GLOBAL_OOF_SERVER_PROTOCOL = "https"
# oof-homing info - everything is from the private oam network (also called onap private network)
GLOBAL_OOF_HOMING_SERVER_PORT = "8091"
+GLOBAL_OOF_HOMING_USERNAME="{{ .Values.oofHomingUsername }}"
+GLOBAL_OOF_HOMING_PASSWORD="{{ .Values.oofHomingPassword }}"
# oof-sniro info - everything is from the private oam network (also called onap private network)
GLOBAL_OOF_SNIRO_SERVER_PORT = "8698"
#oof user
diff --git a/kubernetes/robot/values.yaml b/kubernetes/robot/values.yaml
index f19c0e25a6..1189b628f0 100644
--- a/kubernetes/robot/values.yaml
+++ b/kubernetes/robot/values.yaml
@@ -156,6 +156,9 @@ oofUsername: "oof@oof.onap.org"
oofPassword: "demo123456!"
cmsoUsername: "oof@oof.onap.org"
cmsoPassword: "demo123456!"
+oofHomingUsername: "admin1"
+oofHomingPassword: "plan.15"
+
# default number of instances
replicaCount: 1