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

16 lines
400 B
YAML
Raw Normal View History

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