This commit is contained in:
2025-12-19 14:26:09 +08:00
parent 4c849c2c3d
commit 2f4b5d0870
166 changed files with 43871 additions and 1 deletions

View File

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