helm-charts/matrix-authentication-service/templates/tests/test-connection.yaml

16 lines
450 B
YAML
Raw Normal View History

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "matrix-authentication-service.fullname" . }}-test-connection"
labels:
{{- include "matrix-authentication-service.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "matrix-authentication-service.fullname" . }}:{{ .Values.service.port.http }}']
restartPolicy: Never