blob: 23c6081993b500d6a31512ff3c145994bf60d3fa [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.streaming.port }}']
restartPolicy: Never