From 99115439fd9976bd251f98ed21171c6f38ff2b05 Mon Sep 17 00:00:00 2001 From: Brian Freeman Date: Mon, 9 Sep 2019 18:41:15 +0000 Subject: [PATCH] change default port in e2sim chart Issue-ID: RICPLT-2195 Change-Id: Ie88cd6bfe2bc8550b3552ae5b1cd9fdf0e1c950d Signed-off-by: Brian Freeman --- simulators/e2sim/helm/e2sim/templates/bin/_e2sim-run.sh.tpl | 4 ++-- simulators/e2sim/helm/e2sim/templates/deployment.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/simulators/e2sim/helm/e2sim/templates/bin/_e2sim-run.sh.tpl b/simulators/e2sim/helm/e2sim/templates/bin/_e2sim-run.sh.tpl index 0ee09b6..8f7c954 100755 --- a/simulators/e2sim/helm/e2sim/templates/bin/_e2sim-run.sh.tpl +++ b/simulators/e2sim/helm/e2sim/templates/bin/_e2sim-run.sh.tpl @@ -48,7 +48,7 @@ if [ -z $E2SIM_BIND_ADDR ]; then echo "No suitable address found, binding on loopback addess ${LO}" E2SIM_BIND_ADDR=${LO} else - echo "e2sim starting at ${E2SIM_BIND_ADDR}:${E2SIM_PORT:-36422}" + echo "e2sim starting at ${E2SIM_BIND_ADDR}:${E2SIM_PORT:-36421}" fi -${E2SIM:-/home/e2sim/build/e2agent} ${E2SIM_BIND_ADDR} ${E2SIM_PORT:-36422} +${E2SIM:-/home/e2sim/build/e2agent} ${E2SIM_BIND_ADDR} ${E2SIM_PORT:-36421} diff --git a/simulators/e2sim/helm/e2sim/templates/deployment.yaml b/simulators/e2sim/helm/e2sim/templates/deployment.yaml index 294c778..21475f1 100644 --- a/simulators/e2sim/helm/e2sim/templates/deployment.yaml +++ b/simulators/e2sim/helm/e2sim/templates/deployment.yaml @@ -46,7 +46,7 @@ spec: - name: E2SIM_NETWORK_TYPE value: {{ .Values.e2sim.network.type | default "host" }} - name: E2SIM_PORT - value: {{ .Values.e2sim.network.port | default 36422 |quote}} + value: {{ .Values.e2sim.network.port | default 36421 |quote}} - name: E2SIM_BIND_ADDR value: {{ .Values.e2sim.network.address }} - name: E2SIM_BIND_IF -- 2.16.6