From 26de7a7df5d80b6e63f22e2f7c9a4280a8dce9b3 Mon Sep 17 00:00:00 2001 From: derekwaynecarr Date: Thu, 10 Mar 2016 13:12:53 -0500 Subject: [PATCH] Comment that godep versions 54 or above do not play nice with Kubernetes --- docs/devel/development.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/devel/development.md b/docs/devel/development.md index 5a7b52db49f..18d3abe565b 100644 --- a/docs/devel/development.md +++ b/docs/devel/development.md @@ -166,6 +166,16 @@ export GOPATH=$HOME/go-tools export PATH=$PATH:$GOPATH/bin ``` +Note: +At this time, godep update in the Kubernetes project only works properly if your version of godep is < 54. + +To check your version of godep: + +```sh +$ godep version +godep v53 (linux/amd64/go1.5.3) +``` + ### Using godep Here's a quick walkthrough of one way to use godeps to add or update a Kubernetes dependency into Godeps/_workspace. For more details, please see the instructions in [godep's documentation](https://github.com/tools/godep).