X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Fa1mediator%2Ftemplates%2Fdeployment.yaml;h=a6e0786546943dd2ba612b1cdfabdb5476228806;hb=refs%2Fchanges%2F01%2F1901%2F1;hp=1f3ae51910628694ddf863c7cbe96dab745f16ad;hpb=fdf050451414e1a816e343bcd56f33186a742e49;p=ric-plt%2Fa1.git diff --git a/integration_tests/a1mediator/templates/deployment.yaml b/integration_tests/a1mediator/templates/deployment.yaml index 1f3ae51..a6e0786 100644 --- a/integration_tests/a1mediator/templates/deployment.yaml +++ b/integration_tests/a1mediator/templates/deployment.yaml @@ -21,36 +21,34 @@ spec: containers: - name: {{ .Chart.Name }} volumeMounts: - - name: a1conf - mountPath: /opt/ricmanifest.json - subPath: ricmanifest.json - - name: a1conf - mountPath: /opt/rmr_string_int_mapping.txt - subPath: rmr_string_int_mapping.txt - name: a1conf mountPath: /opt/route/local.rt subPath: local.rt env: + # this sets the source field in messages from a1 to point back to a1s service name, rather than it's random pod name + - name: RMR_SRC_ID + value: {{ .Values.rmrservice.name }} - name: PYTHONUNBUFFERED - value: "0" - - name: RMR_RCV_RETRY_INTERVAL - value: "{{ .Values.rmr_timeout_config.rcv_retry_interval_ms }}" - - name: RMR_RETRY_TIMES + value: "1" + - name: A1_RMR_RETRY_TIMES value: "{{ .Values.rmr_timeout_config.rcv_retry_times }}" - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + - name: INSTANCE_DELETE_NO_RESP_TTL + value: "5" + - name: INSTANCE_DELETE_RESP_TTL + value: "10" + image: "a1:latest" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.httpservice.port }} protocol: TCP - livenessProbe: httpGet: - path: /healthcheck + path: /a1-p/healthcheck port: http readinessProbe: httpGet: - path: /healthcheck + path: /a1-p/healthcheck port: http resources: {{- toYaml .Values.resources | nindent 12 }}