File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,9 +34,11 @@ generate-deploy-manifests:
3434
3535# # Install Dynamo platform on the cluster (run before test-e2e)
3636DYNAMO_NAMESPACE ?= dynamo-system
37- DYNAMO_VERSION ?= 1.0.2
37+ DYNAMO_VERSION ?= 1.1.1
3838DYNAMO_CHART_URL := https://helm.ngc.nvidia.com/nvidia/ai-dynamo/charts/dynamo-platform-$(DYNAMO_VERSION ) .tgz
3939DYNAMO_PRE_DEPLOY_URL := https://raw.githubusercontent.com/ai-dynamo/dynamo/v$(DYNAMO_VERSION ) /deploy/pre-deployment/pre-deployment-check.sh
40+ GAIE_VERSION := v1.5.0
41+ GAIE_MANIFEST_URL := https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/$(GAIE_VERSION ) /manifests.yaml
4042
4143setup-dynamo :
4244 @echo " Running Dynamo pre-deployment checks..."
@@ -46,6 +48,7 @@ setup-dynamo:
4648 chmod +x " $$ TMPSCRIPT" && \
4749 bash " $$ TMPSCRIPT"
4850 @echo " Installing Dynamo platform v$( DYNAMO_VERSION) ..."
51+ @kubectl apply -f $(GAIE_MANIFEST_URL )
4952 @helm upgrade -i dynamo-platform " $( DYNAMO_CHART_URL) " \
5053 --namespace $(DYNAMO_NAMESPACE ) \
5154 --create-namespace \
@@ -55,6 +58,7 @@ setup-dynamo:
5558# # Uninstall Dynamo platform from the cluster
5659cleanup-dynamo :
5760 helm uninstall dynamo-platform --namespace $(DYNAMO_NAMESPACE ) --ignore-not-found
61+ @kubectl delete -f $(GAIE_MANIFEST_URL ) --ignore-not-found
5862 @echo " ✅ Dynamo platform uninstalled from namespace $( DYNAMO_NAMESPACE) "
5963
6064# # Run e2e tests (requires DYNAMO_INSTALLED=true and a cluster with dynamo provider deployed)
You can’t perform that action at this time.
0 commit comments