Files
helm-pixelfed/pixelfed/templates/tests/test-connection.yaml
T
2024-12-29 18:30:59 +01:00

16 lines
382 B
YAML

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