iceshrimp-legacy/chart/templates/tests/test-connection.yaml
ThatOneCalculator 6da5a5b89b
find and replace
2023-07-02 15:18:30 -07:00

16 lines
382 B
YAML

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