Files
AFFiNE-Mirror/.github/helm/affine/charts/front/templates/tests/test-connection.yaml
2026-02-07 04:52:25 +08:00

16 lines
379 B
YAML

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