Sunnypup-Helm/templates/tests/test-connection.yaml
Ava Affine aca076e864 initial commit
Signed-off-by: Ava Affine <ava@sunnypup.io>
2025-07-18 11:27:07 -07:00

15 lines
388 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "sunnypupio.fullname" . }}-test-connection"
labels:
{{- include "sunnypupio.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "sunnypupio.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never