DO288-apps/todo-helm/todo-list/templates/tests/test-connection.yaml
2021-06-11 14:35:15 -04:00

15 lines
385 B
YAML

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