blob: 72432a1bf368d75b0358665b869ec35e49d59eca [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-package-checker
labels:
name: {{ .Release.Name }}-tests-package-checker
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-package-checker
{{ include "openwhisk.docker.imagePullSecrets" . | indent 2 }}
containers:
- name: package-checker
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_api_host_url
# Which of the providers was installed (and thus should be checked)?
- name: "OW_INSTALL_ALARM_PROVIDER"
value: {{ if .Values.providers.alarm.enabled }} "yes" {{ else }} "no" {{ end }}
- name: "OW_INSTALL_KAFKA_PROVIDER"
value: {{ if .Values.providers.kafka.enabled }} "yes" {{ else }} "no" {{ end }}
{{- end }}