X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=integration_tests%2Ftestreceiver%2Ftemplates%2Fdeployment.yaml;h=29be4563371440cd59e148c200b1357eb260dcc7;hb=refs%2Fchanges%2F55%2F955%2F7;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..29be456 100644 --- a/integration_tests/testreceiver/templates/deployment.yaml +++ b/integration_tests/testreceiver/templates/deployment.yaml @@ -26,7 +26,27 @@ 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: TEST_RCV_PORT + value: "{{ .Values.delayrmrservice.port }}" + - name: TEST_RCV_SEC_DELAY + value: "5" + - name: HANDLER_ID + value: "delay_receiver" + volumes: - name: "testreceiverconf" configMap: name: "testreceiverconf" + - name: "delayreceiverconf" + configMap: + name: "delayreceiverconf"