wkd4pgp/deploy/wkd4pgp/templates/tests/test-connection.yaml

16 lines
382 B
YAML

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