opengist/deploy/helm/templates/tests/test-connection.yaml
2024-09-05 01:23:55 +02:00

15 lines
386 B
YAML

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