Changing url in integration test to align with spec
[ric-plt/a1.git] / integration_tests / a1mediator / templates / deployment.yaml
index a30c21c..40f3faf 100644 (file)
@@ -25,24 +25,35 @@ spec:
             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: "1"
-          - name: RMR_RETRY_TIMES
+          - 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"
+          - name: DBAAS_SERVICE_HOST
+            value: "dbaas"
+          - name: DBAAS_SERVICE_PORT
+            value: "6379"
+
+          image: "a1:latest"
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           ports:
             - name: http
               containerPort: {{ .Values.httpservice.port }}
               protocol: TCP
-
           livenessProbe:
             httpGet:
-              path: /a1-p/healthcheck
+              path: /A1-P/v2/healthcheck
               port: http
           readinessProbe:
             httpGet:
-              path: /a1-p/healthcheck
+              path: /A1-P/v2/healthcheck
               port: http
           resources:
             {{- toYaml .Values.resources | nindent 12 }}