initial commit

This commit is contained in:
Florian Wolpert
2020-09-18 15:36:49 +02:00
parent e9a9b4efdf
commit 25e43ee7e3
10 changed files with 615 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "mailman3.fullname" . }}-test-connection"
labels:
{{- include "mailman3.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "mailman3.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never