ytdl-sub/kubernetes/kustomization.yaml
Kai Giokas 87dd0b0966
Add minimal dockerfile, k8s example
There's already a nice docker setup for this, but I've been
using this in kubernetes pretty nicely as a cronjob.
2025-03-17 11:36:39 -05:00

22 lines
536 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
# Set this to wherever you want your jobs to run. It should exist already.
namespace: ytdl-sub
images:
# Override this with your own image if you would like.
# This is a smaller image than the default that includes all the editor stuff.
- name: kaictl/ytdl-sub
newName: kaictl/ytdl-sub
newTag: latest
resources:
- ./volumes.yaml
- ./cronjob.yaml
configMapGenerator:
- name: ytdl-config
files:
- ./config.yaml
- ./subscriptions.yaml