Files
application/backing-services/osrm/templates/tests/test-connection.yaml
2025-11-09 13:22:40 +03:30

16 lines
373 B
YAML

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