Skip to content

Commit

Permalink
chore: bump kustomize to 4.5.2
Browse files Browse the repository at this point in the history
reason:

    go: creating new go.mod: module tmp
    Downloading sigs.k8s.io/kustomize/kustomize/v4@v4.3.0
    go: downloading sigs.k8s.io/kustomize/kustomize/v4 v4.3.0
    go: sigs.k8s.io/kustomize/kustomize/v4@v4.3.0 (in sigs.k8s.io/kustomize/kustomize/v4@v4.3.0):
	    The go.mod file for the module providing named packages contains one or
	    more exclude directives. It must not contain directives that would cause
	    it to be interpreted differently than if it were the main module.
    make: *** [Makefile:36: kustomize] Error 1

the version bump seems to fix the issue as per
kubernetes-sigs/kustomize#3618
  • Loading branch information
mflendrich committed Mar 18, 2022
1 parent ee2768b commit c9ddaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ controller-gen: ## Download controller-gen locally if necessary.

KUSTOMIZE = $(shell pwd)/bin/kustomize
kustomize: ## Download kustomize locally if necessary.
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.3.0)
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.5.2)

CLIENT_GEN = $(shell pwd)/bin/client-gen
client-gen: ## Download client-gen locally if necessary.
Expand Down

0 comments on commit c9ddaed

Please sign in to comment.