Skip to content

Commit

Permalink
Merge pull request #609 from prb112/patch-1
Browse files Browse the repository at this point in the history
fix: makefile had an incorrect phony
  • Loading branch information
rhmdnd authored Aug 29, 2024
2 parents 4c4387c + b962848 commit f709862
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 @@ -510,7 +510,7 @@ deploy: manifests kustomize install ## Deploy controller to the K8s cluster spec
cd config/manager && $(KUSTOMIZE) edit set image $(APP_NAME)=${IMG}
$(KUSTOMIZE) build config/default | sed -e 's%$(DEFAULT_OPERATOR_IMAGE)%$(OPERATOR_IMAGE)%' -e 's%$(DEFAULT_CONTENT_IMAGE)%$(CONTENT_IMAGE)%' | kubectl apply -f -

.PHONY: deploy-to-cluster
.PHONY: deploy-local
deploy-local: manifests kustomize image-to-cluster install ## Deploy after pushing images to the cluster registry.
cd config/manager && $(KUSTOMIZE) edit set image $(APP_NAME)=${OPERATOR_IMAGE}
$(KUSTOMIZE) build config/$(PLATFORM) | sed -e 's%$(DEFAULT_OPERATOR_IMAGE)%$(OPERATOR_IMAGE)%' -e 's%$(DEFAULT_CONTENT_IMAGE)%$(CONTENT_IMAGE)%' -e 's%$(DEFAULT_OPENSCAP_IMAGE)%$(OPENSCAP_IMAGE)%' | kubectl apply -f -
Expand Down

0 comments on commit f709862

Please sign in to comment.