blob: 79766bb579817d8385744a14ad425ed1e1988ed6 [file] [log] [blame]
{{/*
# Copyright 2022-present Open Networking Foundation
# SPDX-License-Identifier: Apache-2.0
*/}}
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "person-detection-app.fullname" . }}-test-connection"
labels:
{{- include "person-detection-app.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "person-detection-app.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never