Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit e8370b1

Browse files
committed
remove ACI targets from Makefile
Signed-off-by: Nicolas De Loof <[email protected]>
1 parent 0d00d62 commit e8370b1

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

Makefile

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ e2e-win-ci: ## Run end to end local tests on Windows CI, no Docker for Linux con
5353
e2e-kube: ## Run End to end Kube tests. Set E2E_TEST=TestName to run a single test
5454
go test -timeout 10m -count=1 -v $(TEST_FLAGS) ./kube/e2e
5555

56-
e2e-aci: ## Run End to end ACI tests. Set E2E_TEST=TestName to run a single test
57-
go test -timeout 20m -count=1 -v $(TEST_FLAGS) ./aci/e2e
58-
5956
e2e-ecs: ## Run End to end ECS tests. Set E2E_TEST=TestName to run a single test
6057
go test -timeout 30m -count=1 -v $(TEST_FLAGS) ./ecs/e2e/ecs ./ecs/e2e/ecs-local
6158

@@ -109,12 +106,6 @@ validate: validate-go-mod validate-headers ## Validate sources
109106

110107
pre-commit: validate import-restrictions check-dependencies lint cli test e2e-local
111108

112-
build-aci-sidecar: ## build aci sidecar image locally and tag it with make build-aci-sidecar tag=0.1
113-
docker build -t docker/aci-hostnames-sidecar:$(tag) aci/etchosts
114-
115-
publish-aci-sidecar: build-aci-sidecar ## build & publish aci sidecar image with make publish-aci-sidecar tag=0.1
116-
docker pull docker/aci-hostnames-sidecar:$(tag) && echo "Failure: Tag already exists" || docker push docker/aci-hostnames-sidecar:$(tag)
117-
118109
build-ecs-search-sidecar: ## build ecs search sidecar image locally and tag it with make build-ecs-search-sidecar tag=0.1
119110
docker buildx build --platform linux/amd64,linux/arm64 -t docker/ecs-searchdomain-sidecar:$(tag) ecs/resolv
120111

@@ -127,15 +118,10 @@ build-ecs-secrets-sidecar: ## build ecs secrets sidecar image locally and tag i
127118
publish-ecs-secrets-sidecar: build-ecs-secrets-sidecar ## build & publish ecs secrets sidecar image with make publish-ecs-secrets-sidecar tag=0.1
128119
docker pull docker/ecs-secrets-sidecar:$(tag) && echo "Failure: Tag already exists" || docker buildx build --push --platform linux/amd64,linux/arm64 -t docker/ecs-secrets-sidecar:$(tag) ecs/secrets
129120

130-
clean-aci-e2e: ## Make sure no ACI tests are currently runnnig in the CI when invoking this. Delete ACI E2E tests resources that might have leaked when ctrl-C E2E tests.
131-
@ echo "Will delete resource groups: "
132-
@ az group list | jq '.[].name' | grep -i E2E-Test
133-
az group list | jq '.[].name' | grep -i E2E-Test | xargs -n1 az group delete -y --no-wait -g
134-
135121
help: ## Show help
136122
@echo Please specify a build target. The choices are:
137123
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
138124

139125
FORCE:
140126

141-
.PHONY: all validate protos cli e2e-local cross test cache-clear lint check-dependencies serve classic-link help clean-aci-e2e go-mod-tidy
127+
.PHONY: all validate protos cli e2e-local cross test cache-clear lint check-dependencies serve classic-link help go-mod-tidy

0 commit comments

Comments
 (0)