diff --git a/.env b/.env index 82924936..aa7fecb6 100644 --- a/.env +++ b/.env @@ -39,23 +39,23 @@ ARTIVC_VERSION=0.10.0 K6_VERSION=0.44.0 # Instill Core -INSTILL_CORE_VERSION=0.5.0-alpha +INSTILL_CORE_VERSION=0.5.1-alpha # api-gateway API_GATEWAY_HOST=api-gateway API_GATEWAY_PORT=8080 -API_GATEWAY_VERSION=0.5.2-alpha +API_GATEWAY_VERSION=0.5.3-alpha # pipeline-backend PIPELINE_BACKEND_IMAGE=instill/pipeline-backend -PIPELINE_BACKEND_VERSION=0.16.1-alpha +PIPELINE_BACKEND_VERSION=0.16.2-alpha PIPELINE_BACKEND_HOST=pipeline-backend PIPELINE_BACKEND_PRIVATEPORT=3081 PIPELINE_BACKEND_PUBLICPORT=8081 # connector-backend CONNECTOR_BACKEND_IMAGE=instill/connector-backend -CONNECTOR_BACKEND_VERSION=0.15.0-alpha +CONNECTOR_BACKEND_VERSION=0.15.1-alpha CONNECTOR_BACKEND_HOST=connector-backend CONNECTOR_BACKEND_PRIVATEPORT=3082 CONNECTOR_BACKEND_PUBLICPORT=8082 diff --git a/Makefile b/Makefile index cebc6340..e688b2d6 100644 --- a/Makefile +++ b/Makefile @@ -224,7 +224,7 @@ integration-test-release: ## Run integration test on the release VDP .PHONY: helm-integration-test-latest helm-integration-test-latest: ## Run integration test on the Helm latest for VDP - @make build-latest + # @make build-latest @export TMP_CONFIG_DIR=$(shell mktemp -d) && docker run --rm \ -v ${HOME}/.kube/config:/root/.kube/config \ -v /var/run/docker.sock:/var/run/docker.sock \ @@ -260,7 +260,7 @@ helm-integration-test-latest: ## Run integration test on t @kubectl rollout status deployment vdp-connector-backend --namespace ${HELM_NAMESPACE} --timeout=120s @kubectl rollout status deployment vdp-pipeline-backend --namespace ${HELM_NAMESPACE} --timeout=120s @kubectl rollout status deployment vdp-controller-vdp --namespace ${HELM_NAMESPACE} --timeout=120s - @sleep 10 + @sleep 30 ifeq ($(UNAME_S),Darwin) @docker run --rm --name ${CONTAINER_BACKEND_INTEGRATION_TEST_NAME}-helm-latest ${CONTAINER_COMPOSE_IMAGE_NAME}:latest /bin/sh -c " \ /bin/sh -c 'cd pipeline-backend && make integration-test API_GATEWAY_URL=host.docker.internal:${API_GATEWAY_PORT}' && \