From d270ee21aac48647dcd8d983ac64a10421352da0 Mon Sep 17 00:00:00 2001 From: Kyle Nusbaum Date: Thu, 13 Feb 2020 02:35:30 -0600 Subject: [PATCH] .circleci: checkout github.com/kubernetes/client-go v0.17.3: (#595) client-go recently merged an API-breaking change on master, and so instead we check out the latest working release of kubernetes/client-go. This is a stop-gap solution for the dependency management issue that should be addressed with modules as we move towards v2 (#471) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ab38a89b6..4c725f7a3a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -112,7 +112,7 @@ jobs: # gnostic. See kubernetes/client-go#741 # TODO(knusbaum): remove this once the breaking change is resolved or propagated command: | - git clone https://github.com/kubernetes/client-go $GOPATH/src/k8s.io/client-go + git clone --branch v0.17.3 https://github.com/kubernetes/client-go $GOPATH/src/k8s.io/client-go git clone --branch v0.4.0 https://github.com/googleapis/gnostic $GOPATH/src/k8s.io/client-go/vendor/github.com/googleapis/gnostic - run: