maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1apiVersion: v1
 2kind: Pod
 3metadata:
 4  name: "{{ include "maddy.fullname" . }}-test-connection"
 5  labels:
 6    {{- include "maddy.labels" . | nindent 4 }}
 7  annotations:
 8    "helm.sh/hook": test-success
 9spec:
10  containers:
11    - name: wget
12      image: busybox
13      command: ['wget']
14      args: ['{{ include "maddy.fullname" . }}:{{ .Values.service.port }}']
15  restartPolicy: Never