Files
file/lbl-01/templates/tests/test-connection.yaml
thaoduc 7e8b1e4ad6 abc
2025-10-08 13:57:16 +07:00

16 lines
394 B
YAML

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