Hi there,
After installing kustomize using go get sigs.k8s.io/kustomize and executing the command kustomize i get the follwoing error:
kustomize: command not found
Am I missing an installation step? I am trying to install kustomize on a ubuntu 18.04 machine using go 1.12
Fixed. Needed to do the following:
export PATH=$PATH:$(go env GOPATH)/bin
Most helpful comment
Fixed. Needed to do the following:
export PATH=$PATH:$(go env GOPATH)/bin