Skip to content

Commit

Permalink
chore: fix kustomize build step (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
karlderkaefer authored Jun 14, 2024
1 parent 4482ce4 commit b30ddb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/k
.PHONY: kustomize
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.
$(KUSTOMIZE): $(LOCALBIN)
curl -s $(KUSTOMIZE_INSTALL_SCRIPT) | bash -s -- $(subst v,,$(KUSTOMIZE_VERSION)) $(LOCALBIN)
@[ -f $(LOCALBIN)/kustomize ] || curl -s $(KUSTOMIZE_INSTALL_SCRIPT) | bash -s -- $(subst v,,$(KUSTOMIZE_VERSION)) $(LOCALBIN)

.PHONY: controller-gen
controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessary.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ func TestAddMonitorWithCorrectValues(t *testing.T) {

service.Setup(*provider)
m := models.Monitor{
Name: "google-test",
URL: "https://google.com",
Name: "google-test",
URL: "https://google.com",
Config: spec,
}

Expand Down

0 comments on commit b30ddb5

Please sign in to comment.