2023-05-10 23:07:45 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
2023-08-21 14:14:53 +00:00
|
|
|
name: "{{ include "iceshrimp.fullname" . }}-test-connection"
|
2023-05-10 23:07:45 +00:00
|
|
|
labels:
|
2023-08-21 14:14:53 +00:00
|
|
|
{{- include "iceshrimp.labels" . | nindent 4 }}
|
2023-05-10 23:07:45 +00:00
|
|
|
annotations:
|
|
|
|
"helm.sh/hook": test
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: wget
|
|
|
|
image: busybox
|
|
|
|
command: ['wget']
|
2023-08-21 14:14:53 +00:00
|
|
|
args: ['{{ include "iceshrimp.fullname" . }}:{{ .Values.service.port }}']
|
2023-05-10 23:07:45 +00:00
|
|
|
restartPolicy: Never
|