16 lines
488 B
YAML
16 lines
488 B
YAML
# This test checks that the server is up and running by making a wget
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ .Release.Name }}-test-connection"
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed
|
|
spec:
|
|
containers:
|
|
- name: {{ .Release.Name }}-test-connection
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "nexus.fullname" . }}:{{ .Values.nexus.nexusPort }}']
|
|
restartPolicy: Never
|