X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Ftestreceiver%2Ftemplates%2Fdeployment.yaml;h=b6e5c4e265b678658c5c584d84a8a946c953e069;hb=971c91cbf40d7d735c4cc8c8871b1a4d677a6496;hp=2d49f6ec6bfca24b01c6fccc5f78aa6ea531839e;hpb=09edf28fd47faf808e053d6ede06315c3926fa45;p=ric-plt%2Fa1.git diff --git a/integration_tests/testreceiver/templates/deployment.yaml b/integration_tests/testreceiver/templates/deployment.yaml index 2d49f6e..b6e5c4e 100644 --- a/integration_tests/testreceiver/templates/deployment.yaml +++ b/integration_tests/testreceiver/templates/deployment.yaml @@ -26,7 +26,33 @@ spec: - name: testreceiverconf mountPath: /opt/route/local.rt subPath: local.rt + - name: delayreceiver + image: testreceiver:latest + imagePullPolicy: Never + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumeMounts: + - name: delayreceiverconf + mountPath: /opt/route/local.rt + subPath: local.rt + env: + - name: RMR_RCV_RETRY_INTERVAL + value: "500" + - name: RMR_RETRY_TIMES + value: "10" + - name: TEST_RCV_PORT + value: "{{ .Values.delayrmrservice.port }}" + - name: TEST_RCV_RETURN_MINT + value: "10001" + - name: TEST_RCV_SEC_DELAY + value: "5" + - name: TEST_RCV_RETURN_PAYLOAD + value: '{"ACK_FROM": "DELAYED_TEST", "status": "SUCCESS"}' + volumes: - name: "testreceiverconf" configMap: name: "testreceiverconf" + - name: "delayreceiverconf" + configMap: + name: "delayreceiverconf"