charts/wetty/templates/tests/test-connection.yaml
2020-07-24 16:33:19 +08:00

16 lines
377 B
YAML

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