From: Lusheng Ji Date: Wed, 3 Jun 2020 02:02:38 +0000 (+0000) Subject: Merge "App config path change" X-Git-Tag: f-release~99 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=a5aac9a0ad7da25bfd0a31278fc4f56bebecad40;hp=192ed9a49eb48f7965a36e796b8be14e93ebb2f2;p=it%2Fdep.git Merge "App config path change" --- diff --git a/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml b/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml index 8482f6cf..be156819 100644 --- a/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml +++ b/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml @@ -58,6 +58,7 @@ a1simulator: name: a1-simulator tag: 1.0.1 service: + allowHttp: true httpName: http internalPort1: 8085 targetPort1: 8085 diff --git a/nonrtric/helm/a1simulator/templates/statefulset.yaml b/nonrtric/helm/a1simulator/templates/statefulset.yaml index d6dc0b30..63019cd5 100644 --- a/nonrtric/helm/a1simulator/templates/statefulset.yaml +++ b/nonrtric/helm/a1simulator/templates/statefulset.yaml @@ -63,6 +63,8 @@ spec: env: - name: A1_VERSION value: OSC_2.1.0 + - name: ALLOW_HTTP + value: {{ .Values.a1simulator.service.allowHttp | quote}} --- kind: StatefulSet @@ -113,4 +115,6 @@ spec: periodSeconds: {{ .Values.a1simulator.liveness.periodSeconds }} env: - name: A1_VERSION - value: STD_1.1.3 \ No newline at end of file + value: STD_1.1.3 + - name: ALLOW_HTTP + value: {{ .Values.a1simulator.service.allowHttp | quote}} \ No newline at end of file diff --git a/nonrtric/helm/a1simulator/values.yaml b/nonrtric/helm/a1simulator/values.yaml index 53715699..c059c383 100644 --- a/nonrtric/helm/a1simulator/values.yaml +++ b/nonrtric/helm/a1simulator/values.yaml @@ -26,6 +26,7 @@ a1simulator: name: a1-simulator tag: 1.0.1 service: + allowHttp: true httpName: http internalPort1: 8085 targetPort1: 8085