Skip to content

Commit 8888570

Browse files
committed
test: Temporarily disable GOPROXY to workaround dodgy CAPA release
v2.3.4 release was partially done and then rolled back. This has broken the discovery mechanism built in to clusterctl which uses go mod proxy to discover latest releases of providers. Seeing errors in other builds, e.g. https://github.com/d2iq-labs/capi-runtime-extensions/actions/runs/8029367117/job/21942031279?pr=390#step:9:10 ``` Error: failed to get provider components for the "aws" provider: failed to get repository client for the InfrastructureProvider with name aws: error creating the GitHub repository client: failed to get latest release: release not found for version v2.3.4, please retry later or set "GOPROXY=off" to get the current stable release: 404 Not Found ``` Disabling GOPROXY temporarily until CAPA release is fixed.
1 parent 34b0b1d commit 8888570

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

make/clusterctl.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
.PHONY: clusterctl.init
55
clusterctl.init:
6-
env CLUSTER_TOPOLOGY=true \
6+
env GOPROXY=off \
7+
CLUSTER_TOPOLOGY=true \
78
EXP_RUNTIME_SDK=true \
89
EXP_CLUSTER_RESOURCE_SET=true \
910
EXP_MACHINE_POOL=true \

0 commit comments

Comments
 (0)