Émilien Devos 0e92a63d14 fix image location for helm | преди 3 години | |
---|---|---|
.. | ||
templates | преди 4 години | |
.gitignore | преди 4 години | |
Chart.lock | преди 4 години | |
Chart.yaml | преди 3 години | |
README.md | преди 4 години | |
values.yaml | преди 3 години |
Easily deploy Invidious to Kubernetes.
# 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 is easy, too!
$ helm upgrade invidious ./
# Get rid of everything (except database)
$ helm delete invidious
# To also delete the database, remove all invidious-postgresql PVCs