Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions charts/ftl/templates/namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: v1
kind: Namespace
metadata:
labels:
{{ if eq .Values.istio.enabled true -}}
istio-injection: enabled
{{- end -}}
name: {{ .Release.Namespace }}
3 changes: 1 addition & 2 deletions deployment/Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ setup-istio-cluster: setup-cluster
helm install istio-base istio/base -n istio-system --wait --version 1.23.3
helm install istiod istio/istiod -n istio-system --wait --version 1.23.3
fi
kubectl label namespace default istio-injection=enabled --overwrite
kubectl apply -f istio-access-logs.yaml

# Complete setup of registry and Istio-enabled cluster
Expand All @@ -103,7 +102,7 @@ teardown: teardown-cluster teardown-registry
apply *args:
kubectl delete job --ignore-not-found=true ftl-dbmig-latest
helm dependency build ../charts/ftl-k3d
helm upgrade --install ftl-k3d ../charts/ftl-k3d -f values.yaml {{args}}
helm upgrade --install ftl-k3d ../charts/ftl-k3d -f values.yaml -n ftl {{args}}

# Deploy specific version of FTL from Helm repository
deploy-version version: setup-istio-cluster
Expand Down
Loading