provider/build/chart/templates/tests/test-connection.yaml
zhanghaogang 01fa705525
All checks were successful
Build image / build (push) Successful in 1m1s
feat: 更新Kubernetes chart配置
- 添加host-time和volume-shck44的volume配置
- 配置ingress规则,支持ht.timerzz.com/api/v2/providers路径
- 设置liveness和readiness探针
- 配置默认的ClusterIP服务
- 添加configMap挂载支持"
2025-03-13 13:30:03 +08:00

16 lines
373 B
YAML

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