新增description;初始化wikijs示例

This commit is contained in:
2025-05-22 16:42:49 +08:00
parent d96d4f1947
commit 588b4a7f70
14 changed files with 617 additions and 0 deletions

View File

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