Files

16 lines
403 B
YAML
Raw Permalink Normal View History

2025-09-16 21:04:58 +08:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "toutoukan-chart.fullname" . }}-test-connection"
labels:
{{- include "toutoukan-chart.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "toutoukan-chart.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never