charts/charts-wip/matrix-synapse/templates/tests/test-connection.yaml
2020-08-07 23:23:34 +02:00

16 lines
410 B
YAML

---
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "matrix-synapse.fullname" . }}-test-connection"
labels:
{{ include "matrix-synapse.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "matrix-synapse.fullname" . }}:8008/_matrix/client/versions']
restartPolicy: Never