From b5b11ef6e9dca00b6023deef308fd353c99d5f08 Mon Sep 17 00:00:00 2001 From: bzub Date: Thu, 26 Sep 2019 17:37:53 -0500 Subject: [PATCH 1/2] Fix compile kustomize example. --- docs/plugins/goPluginCaveats.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plugins/goPluginCaveats.md b/docs/plugins/goPluginCaveats.md index e9d2e4bd5..1c5009ae1 100644 --- a/docs/plugins/goPluginCaveats.md +++ b/docs/plugins/goPluginCaveats.md @@ -52,8 +52,8 @@ kustomize and the plugin_. This means a one-time run of ``` -GOPATH=${whatever} go get \ - sigs.k8s.io/kustomize/cmd/kustomize@${releaseVersion} +GOPATH=${whatever} GO111MODULE=on go get \ + sigs.k8s.io/kustomize/v3/cmd/kustomize@${releaseVersion} ``` and then a normal development cycle using From 970ce67c34334692def7ddec6e4a1b24a3a32cd0 Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Thu, 26 Sep 2019 17:38:50 -0700 Subject: [PATCH 2/2] Update goPluginCaveats.md --- docs/plugins/goPluginCaveats.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/plugins/goPluginCaveats.md b/docs/plugins/goPluginCaveats.md index 1c5009ae1..4bf730a37 100644 --- a/docs/plugins/goPluginCaveats.md +++ b/docs/plugins/goPluginCaveats.md @@ -52,8 +52,7 @@ kustomize and the plugin_. This means a one-time run of ``` -GOPATH=${whatever} GO111MODULE=on go get \ - sigs.k8s.io/kustomize/v3/cmd/kustomize@${releaseVersion} +GOPATH=${whatever} GO111MODULE=on go get sigs.k8s.io/kustomize/kustomize/v3 ``` and then a normal development cycle using