Markus Pesch
64e21d43ab
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
394 B
YAML
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
|