keksAccountHelm/templates/tests/test-connection.yaml

16 lines
407 B
YAML
Raw Normal View History

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