From 99a1efc53874b7039d767118c9687ff3d37852b1 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 25 Oct 2024 12:07:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(helm)=20deploy=20livekit=20in=20'm?= =?UTF-8?q?eet'=20namespace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LiveKit Helm chart doesn't support namespace parameterization like MinIO templates. Egress and server deploy to default namespace, but frontend and backend need all components in the same namespace. Workaround: force kubectl context to 'meet' before starting Tilt. Future improvement needed in chart. Issue #105 have been opened in livekit-helm repo. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ef87bd04..5d52587d 100644 --- a/Makefile +++ b/Makefile @@ -302,6 +302,7 @@ build-k8s-cluster: ## build the kubernetes cluster using kind .PHONY: build-k8s-cluster start-tilt: ## start the kubernetes cluster using kind + kubectl config set-context --current --namespace=meet tilt up -f ./bin/Tiltfile .PHONY: build-k8s-cluster