charts/charts-wip/matrix-synapse/templates/tests/test-connection.yaml

17 lines
410 B
YAML
Raw Normal View History

2020-08-07 21:23:34 +00:00
---
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