Files
AFFiNE-Mirror/.github/helm/affine/charts/web/templates/tests/test-connection.yaml
2023-06-29 14:02:46 +00:00

16 lines
367 B
YAML

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