2024-02-19 00:08:20 +01:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
2024-11-12 12:41:26 +01:00
|
|
|
name: "{{ include "mautrix-bridge.fullname" . }}-test-connection"
|
2024-02-19 00:08:20 +01:00
|
|
|
labels:
|
2024-11-12 12:41:26 +01:00
|
|
|
{{- 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']
|
2024-11-12 12:41:26 +01:00
|
|
|
args: ['{{ include "mautrix-bridge.fullname" . }}:{{ .Values.service.port }}']
|
2024-02-19 00:08:20 +01:00
|
|
|
restartPolicy: Never
|