helm-charts/matrix-sliding-sync/templates/tests/test-connection.yaml

16 lines
415 B
YAML
Raw Normal View History

2024-02-20 23:43:46 +01:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "matrix-sliding-sync.fullname" . }}-test-connection"
labels:
{{- include "matrix-sliding-sync.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "matrix-sliding-sync.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never