openclaw/charts/clawdbot/templates/tests/test-connection.yaml
sirily11 6635d70170
feat: add helm chart support (#1)
feat: enhance Helm chart workflows and update image references
2026-01-28 09:35:54 +08:00

16 lines
382 B
YAML

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