xbdm 069e91d2a6 alpine v3.18 & Update Helm release postgresql (#4103) 6 months ago
..
templates 4a56ba34d4 Fix pg_is ready user 3 years ago
.gitignore 3cde5e28a8 Add support to run on Kubernetes, add Helm chart 4 years ago
Chart.lock 069e91d2a6 alpine v3.18 & Update Helm release postgresql (#4103) 6 months ago
Chart.yaml 069e91d2a6 alpine v3.18 & Update Helm release postgresql (#4103) 6 months ago
README.md 61150c74d2 Move privacy type into playlists.sql 4 years ago
values.yaml 692166bd64 Update chart dependency for postgresql 1 year ago

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