blob: 93d30d0053c897da11512e014ca1b1bbf18fe491 [file] [log] [blame]
Kailash9e1002a2019-01-22 13:08:13 -08001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: v1
17kind: Pod
18metadata:
19 name: "{{ .Release.Name }}-api-test"
20 annotations:
21 "helm.sh/hook": test-success
22spec:
23 restartPolicy: Never
24 containers:
25 - name: {{ .Release.Name }}-api-test
26 image: {{ .Values.images.xos_api_tester.repository }}:{{ .Values.images.xos_api_tester.tag }}
27 imagePullPolicy: {{ .Values.images.xos_api_tester.pullPolicy }}
28 volumeMounts:
29 - name: log-volume
30 mountPath: /src/cord-api/Tests/Log/
31 env:
32 - name: SERVER_IP
33 value: 'xos-chameleon'
34 - name: SERVER_PORT
35 value: '9101'
Kailash9f652a42019-01-23 10:37:07 -080036 command: ["robot", "-d", "Log", "-T", "-v", "number_of_onus:{{ .Values.onus_per_pon_port }}", "WorkflowValidations/BBSIM.robot"]
Kailash9e1002a2019-01-22 13:08:13 -080037 volumes:
38 - name: log-volume
39 hostPath:
40 path: /tmp/helm_test_bbsim_logs_{{ dateInZone "20060102T030405.00Z" (now) "UTC" }}
Kailash9f652a42019-01-23 10:37:07 -080041 type: DirectoryOrCreate