mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 12:00:01 +03:00
16 lines
412 B
YAML
16 lines
412 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "youtubedl-material.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "youtubedl-material.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "youtubedl-material.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|