部署文件和插件问题修复

This commit is contained in:
2024-03-22 20:31:04 +08:00
parent fab9914f39
commit c956a8dfed
20 changed files with 595 additions and 24 deletions

View File

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