You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
invidious/kubernetes
xbdm 069e91d2a6
alpine v3.18 & Update Helm release postgresql (#4103)
Co-authored-by: Samantaz Fox <coding@samantaz.fr>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
7 months ago
..
templates Fix pg_is ready user 4 years ago
.gitignore Add support to run on Kubernetes, add Helm chart 4 years ago
Chart.lock alpine v3.18 & Update Helm release postgresql (#4103) 7 months ago
Chart.yaml alpine v3.18 & Update Helm release postgresql (#4103) 7 months ago
README.md Move privacy type into playlists.sql 4 years ago
values.yaml 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