trashposs/chart/templates/tests/test-connection.yaml

16 lines
385 B
YAML
Raw Normal View History

2023-05-11 01:07:45 +02:00
apiVersion: v1
kind: Pod
metadata:
2024-04-06 23:55:59 +02:00
name: "{{ include "trashposs.fullname" . }}-test-connection"
2023-05-11 01:07:45 +02:00
labels:
2024-04-06 23:55:59 +02:00
{{- include "trashposs.labels" . | nindent 4 }}
2023-05-11 01:07:45 +02:00
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
2024-04-06 23:55:59 +02:00
args: ['{{ include "trashposs.fullname" . }}:{{ .Values.service.port }}']
2023-05-11 01:07:45 +02:00
restartPolicy: Never