From c3dec005109f4845bda29503674bb2598bf0255d Mon Sep 17 00:00:00 2001 From: David Zhao Date: Fri, 21 Jan 2022 14:28:03 -0800 Subject: [PATCH] Deprecation notice for old deployment scripts Fixed #355. --- deploy/README.md | 7 ++++++- deploy/cloud-init.amzn2.yaml | 2 +- deploy/cloud-init.ubuntu.yaml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/deploy/README.md b/deploy/README.md index 48d4eedbe..68ad3f58f 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -1,5 +1,10 @@ # LiveKit Server Deployment - Deployment Guides: +The deployment scripts in this directory are deprecated and will not be maintained. + +They are here for reference purposes only. Please refer to the links below for up-to-date instructions. + +Deployment Guides: + - [Deploy to a VM](https://docs.livekit.io/deploy/vm) - [Deploy to Kubernetes](https://docs.livekit.io/deploy/kubernetes) diff --git a/deploy/cloud-init.amzn2.yaml b/deploy/cloud-init.amzn2.yaml index 9c6589037..af8fbf493 100644 --- a/deploy/cloud-init.amzn2.yaml +++ b/deploy/cloud-init.amzn2.yaml @@ -31,7 +31,7 @@ write_files: -----END PRIVATE KEY----- runcmd: - - export LIVEKIT_VERSION=v0.13 # set LiveKit version + - export LIVEKIT_VERSION=v0.15 # set LiveKit version - curl -o /etc/systemd/system/docker.livekit-server@.service -O https://raw.githubusercontent.com/livekit/master/cloud-images/deploy/docker.livekit-server%40.service - systemctl enable docker - systemctl start docker diff --git a/deploy/cloud-init.ubuntu.yaml b/deploy/cloud-init.ubuntu.yaml index 04e844895..bf5bb0a8b 100644 --- a/deploy/cloud-init.ubuntu.yaml +++ b/deploy/cloud-init.ubuntu.yaml @@ -32,7 +32,7 @@ write_files: -----END PRIVATE KEY----- runcmd: - - export LIVEKIT_VERSION=v0.13 # set LiveKit version + - export LIVEKIT_VERSION=v0.15 # set LiveKit version - curl -o /etc/systemd/system/docker.livekit-server@.service -O https://raw.githubusercontent.com/livekit/livekit-server/master/deploy/docker.livekit-server%40.service - systemctl enable docker.livekit-server@${LIVEKIT_VERSION} - systemctl start docker.livekit-server@${LIVEKIT_VERSION}