diff options
Diffstat (limited to 'helm/robot/templates/test-job.yaml')
-rw-r--r-- | helm/robot/templates/test-job.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helm/robot/templates/test-job.yaml b/helm/robot/templates/test-job.yaml index a573b510..f9df6f65 100644 --- a/helm/robot/templates/test-job.yaml +++ b/helm/robot/templates/test-job.yaml @@ -1,5 +1,5 @@ {{/* -# Copyright (C) 2023 Nordix Foundation. +# Copyright (C) 2023-2024 Nordix Foundation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -49,7 +49,7 @@ spec: imagePullPolicy: Never env: - name: ROBOT_FILE - value: "$(ROBOT_FILE)" + value: {{ .Values.robot }} command: [ "./run-test.sh" ] volumeMounts: - name: robot-csit-pv @@ -58,4 +58,4 @@ spec: volumes: - name: robot-csit-pv hostPath: - path: {{ .Values.robotLogDir }}
\ No newline at end of file + path: {{ .Values.robotLogDir }} |