softplayer-helmfile/charts/softplayer-web/templates/tests/test-connection.yaml

16 lines
400 B
YAML
Raw Permalink Normal View History

2024-04-06 17:56:56 +00:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "softplayer-web.fullname" . }}-test-connection"
labels:
{{- include "softplayer-web.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "softplayer-web.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never