invidious-mod/kubernetes
Émilien Devos 0c7919f3d9
Dont use quay for the postgresql bitnami image
2022-10-25 20:57:51 +00:00
..
templates
.gitignore
Chart.lock Fix deprecated helm chart dependency (#2944) 2022-03-03 16:09:13 +01:00
Chart.yaml Fix deprecated helm chart dependency (#2944) 2022-03-03 16:09:13 +01:00
README.md
values.yaml Dont use quay for the postgresql bitnami image 2022-10-25 20:57:51 +00:00

README.md

Invidious Helm chart

Easily deploy Invidious to Kubernetes.

Installing Helm chart

# Build Helm dependencies
$ helm dep build

# 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 ./

Upgrading

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

Uninstall

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

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