添加helm-chart

This commit is contained in:
JACKYMYPERSON
2025-09-16 21:04:58 +08:00
parent a7a343e5a9
commit 0729f6e5cf
11 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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