blob: 23c6081993b500d6a31512ff3c145994bf60d3fa [file] [log] [blame]
Hyunsun Moon97e111d2022-05-13 17:56:56 -07001{{/*
2# Copyright 2022-present Open Networking Foundation
3
4# SPDX-License-Identifier: Apache-2.0
5*/}}
Shad Ansari0a4637a2022-05-11 12:20:59 -07006
7apiVersion: v1
8kind: Pod
9metadata:
10 name: "{{ include "person-detection-app.fullname" . }}-test-connection"
11 labels:
12 {{- include "person-detection-app.labels" . | nindent 4 }}
13 annotations:
14 "helm.sh/hook": test
15spec:
16 containers:
17 - name: wget
18 image: busybox
19 command: ['wget']
Hyunsun Moon08898d42022-05-16 14:21:38 -070020 args: ['{{ include "person-detection-app.fullname" . }}:{{ .Values.service.streaming.port }}']
Shad Ansari0a4637a2022-05-11 12:20:59 -070021 restartPolicy: Never