2020-08-07 21:23:34 +00:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: "{{ include "matrix-synapse.fullname" . }}-test-connection"
|
|
|
|
labels:
|
2020-08-09 09:16:36 +00:00
|
|
|
{{- include "matrix-synapse.labels" . | nindent 4 }}
|
2020-08-07 21:23:34 +00:00
|
|
|
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
|