helm-charts/mautrix-bridge/templates/tests/test-connection.yaml

16 lines
400 B
YAML
Raw Permalink Normal View History

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