From b32a7d4744233ae389c9e49218f30b487faf0c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gre=CC=81goire=20Compagnon?= Date: Mon, 7 Aug 2023 19:39:51 +0200 Subject: [PATCH] Updating chart README --- kubernetes/README.md | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/kubernetes/README.md b/kubernetes/README.md index 35478f99..33c19fb3 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -4,23 +4,10 @@ Easily deploy Invidious to Kubernetes. ## Installing Helm chart +Edit `values.yaml` to your liking, especially set `config.hmac_key`. Then install the chart: + + ```sh -# 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 ./ ```