Skip to content

Commit

Permalink
fix: installation of kustomize tool (#20)
Browse files Browse the repository at this point in the history
Signed-off-by: Sunil Thaha <sthaha@redhat.com>
  • Loading branch information
sthaha committed Oct 11, 2021
1 parent 5f1cdb8 commit 96f5221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $(GOLANGCI_LINT): $(TOOLS_DIR)
$(KUSTOMIZE): $(TOOLS_DIR)
@{ \
set -e ;\
GOBIN=$(TOOLS_DIR) go install sigs.k8s.io/kustomize/kustomize/v3 ;\
GOBIN=$(TOOLS_DIR) go install sigs.k8s.io/kustomize/kustomize/v3@v3.2.3 ;\
}

$(OPERATOR_SDK): $(TOOLS_DIR)
Expand Down Expand Up @@ -141,7 +141,7 @@ bundle: generate $(KUSTOMIZE) $(OPERATOR_SDK)
$(BUNDLE_METADATA_OPTS)
$(OPERATOR_SDK) bundle validate ./bundle

.PHONY: bundle-build
.PHONY: bundle-image
bundle-image: bundle ## Build the bundle image.
docker build -f bundle.Dockerfile -t $(BUNDLE_IMG) .

Expand Down

0 comments on commit 96f5221

Please sign in to comment.