helm-charts/gotosocial/templates/tests/test-connection.yaml

16 lines
388 B
YAML
Raw Permalink Normal View History

2024-01-28 11:07:59 +01:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "gotosocial.fullname" . }}-test-connection"
labels:
{{- include "gotosocial.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "gotosocial.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never