athens-proxy-charts/templates/tests/test-connection.yaml
Markus Pesch 64e21d43ab
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2022-05-21 11:45:03 +02:00

16 lines
394 B
YAML

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