blob: 1797750dafc09c3e04fd209964ed181bcf5890dc [file] [log] [blame]
Andy Baviera02cd962018-04-09 17:07:22 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: v1
16kind: Pod
17metadata:
18 name: "{{ .Release.Name }}-api-test"
19 annotations:
20 "helm.sh/hook": test-success
21spec:
22 containers:
23 - name: {{ .Release.Name }}-api-test
24 image: {{ .Values.images.api_tester.repository }}:{{ .Values.images.api_tester.tag }}
25 imagePullPolicy: {{ .Values.images.api_tester.pullPolicy }}
26 env:
27 - name: SERVER_IP
28 value: 'xos-chameleon'
29 - name: SERVER_PORT
30 value: '9101'
31 - name: USER
32 value: '{{ .Values.xosAdminUser }}'
33 - name: PASSWD
34 value: '{{ .Values.xosAdminPassword }}'
35 command: [ "pybot", "-L", "TRACE", "-d", "Log", "-T", "Ch_DeploymentTest.txt", "Ch_SiteTest.txt", "Ch_UsersTest.txt", "Ch_SliceTest.txt", "Ch_ServiceTest.txt" ]
36 restartPolicy: Never