This commit is contained in:
2025-01-13 00:32:08 +01:00
parent b2d37a9c5a
commit 33caf58f9c
17 changed files with 664 additions and 28 deletions

View File

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