invidious/kubernetes
Emilien Devos de3a444939
Invidious CI / build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }} (1.10.1, true) (push) Waiting to run Details
Invidious CI / build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }} (1.7.3, true) (push) Waiting to run Details
Invidious CI / build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }} (1.8.2, true) (push) Waiting to run Details
Invidious CI / build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }} (1.9.2, true) (push) Waiting to run Details
Invidious CI / build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }} (nightly, false) (push) Waiting to run Details
Invidious CI / build-docker (push) Waiting to run Details
Invidious CI / build-docker-arm64 (push) Waiting to run Details
Build and release container / release (push) Has been cancelled Details
limit feeds and delete materialized views
2024-04-27 18:16:24 -04:00
..
templates Fix pg_is ready user 2020-09-06 00:37:05 -07:00
.gitignore Add support to run on Kubernetes, add Helm chart 2020-02-07 13:46:12 +01:00
Chart.lock alpine v3.18 & Update Helm release postgresql (#4103) 2023-10-10 19:12:21 +00:00
Chart.yaml alpine v3.18 & Update Helm release postgresql (#4103) 2023-10-10 19:12:21 +00:00
README.md Move privacy type into playlists.sql 2020-04-14 18:09:48 -05:00
values.yaml limit feeds and delete materialized views 2024-04-27 18:16:24 -04: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