From 55941f57693b8ff9585552ef35b1dcb54dbc3c04 Mon Sep 17 00:00:00 2001 From: Jay Pipes Date: Sat, 14 Sep 2019 18:59:07 -0400 Subject: [PATCH] add note about GO111MODULE for source install It's not immediately obvious that in order to get the `go install sigs.k8s.io/kustomize/v3/cmd/kustomize` instructions to work successfully, you need to have `GO111MODULE=on` set, so I added a note about that. Issues #1536, #1314 --- docs/INSTALL.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index a80bee6c6..51cdb0388 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -30,6 +30,9 @@ Requires [Go] v1.12 or higher: go install sigs.k8s.io/kustomize/v3/cmd/kustomize ``` +**NOTE**: The above uses a versioned import path. You will need to run the +above with `GO111MODULE=on`. + ### Other methods #### macOS