blob: 50cd63e40b5a91e924f3ae9f0383cf411901ddb8 [file] [log] [blame]
# Copyright 2020-present Open Networking Foundation
# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.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