helm-charts/speedtest-exporter/templates/tests/test-connection.yaml

16 lines
412 B
YAML
Raw Normal View History

2024-07-05 10:26:59 +02:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "speedtest-exporter.fullname" . }}-test-connection"
labels:
{{- include "speedtest-exporter.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "speedtest-exporter.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never