invidious-helm-chart/invidious
2024-05-27 14:59:48 +10:00
..
templates a new start for the invidious helm chart 2024-05-26 23:46:19 +02:00
.gitignore a new start for the invidious helm chart 2024-05-26 23:46:19 +02:00
Chart.lock use oci bitnami 2024-05-26 23:50:07 +02:00
Chart.yaml offer install from helm repo 2024-05-27 00:00:24 +02:00
README.md offer install from helm repo 2024-05-27 00:00:24 +02:00
values.yaml Update links in values.yaml 2024-05-27 14:59:48 +10:00

Invidious Helm chart

Easily deploy Invidious to Kubernetes.

Installing Helm chart

# Add repo of Invidious helm charts
$ helm repo add invidious https://charts-helm.invidious.io
$ helm repo update

# Add PostgreSQL init scripts
$ kubectl create configmap invidious-postgresql-init \
  --from-file=../config/sql/channels.sql \
  --from-file=../config/sql/videos.sql \
  --from-file=../config/sql/channel_videos.sql \
  --from-file=../config/sql/users.sql \
  --from-file=../config/sql/session_ids.sql \
  --from-file=../config/sql/nonces.sql \
  --from-file=../config/sql/annotations.sql \
  --from-file=../config/sql/playlists.sql \
  --from-file=../config/sql/playlist_videos.sql

# Install Helm app to your Kubernetes cluster
$ helm install invidious invidious/invidious

Upgrading

# Upgrading is easy, too!
$ helm upgrade invidious invidious/invidious

Uninstall

# Get rid of everything (except database)
$ helm delete invidious

# To also delete the database, remove all invidious-postgresql PVCs