🚚(k8s) move tilt config to bin

Move tilt config to bin directory
to keep the root directory clean.
Add makefile cmd about k8s.
This commit is contained in:
Anthony LC
2024-04-12 23:02:03 +02:00
committed by Anthony LC
parent 0575c0f086
commit 428cd74366
3 changed files with 17 additions and 8 deletions

View File

@@ -321,4 +321,13 @@ frontend-i18n-generate: \
frontend-i18n-compile: ## Format the crowin json files used deploy to the apps
cd $(PATH_FRONT) && yarn i18n:deploy
.PHONY: frontend-i18n-compile
.PHONY: frontend-i18n-compile
# -- K8S
build-k8s-cluster: ## build the kubernetes cluster using kind
./bin/start-kind.sh
.PHONY: build-k8s-cluster
start-tilt: ## start the kubernetes cluster using kind
tilt up -f ./bin/Tiltfile
.PHONY: build-k8s-cluster