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 ./ ```