blob: c1a9364009845e32d64e3a084c1f726a4d2f9982 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
{{- if .Values.whisk.testing.includeTests }}
apiVersion: v1
kind: Pod
metadata:
name: {{ .Release.Name }}-tests-smoketest
labels:
name: {{ .Release.Name }}-tests-smoketest
ow-testpod: "true"
{{ include "openwhisk.label_boilerplate" . | indent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
restartPolicy: Never
volumes:
- name: task-dir
configMap:
name: {{ .Release.Name }}-tests-smoketest
{{ include "openwhisk.docker.imagePullSecrets" . | indent 2 }}
containers:
- name: smoketest
image: "{{- .Values.docker.registry.name -}}{{- .Values.utility.imageName -}}:{{- .Values.utility.imageTag -}}"
imagePullPolicy: {{ .Values.utility.imagePullPolicy | quote }}
command: ["/bin/bash", "/task/myTask.sh"]
volumeMounts:
- name: task-dir
mountPath: "/task/myTask.sh"
subPath: "myTask.sh"
env:
- name: "WSK_AUTH"
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-whisk.auth
key: guest
- name: "WSK_API_HOST_URL"
valueFrom:
configMapKeyRef:
name: {{ .Release.Name }}-whisk.config
key: whisk_internal_api_host_url
{{- end }}