Skip to content

Commit

Permalink
Return kustomize to the release target (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
l0kix2 committed Apr 12, 2024
1 parent 6dbb620 commit 19fecad
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 @@ -256,7 +256,7 @@ deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in
undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
$(KUSTOMIZE) build config/default | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f -

release: ## Release operator docker imager and helm chart.
release: kustomize ## Release operator docker imager and helm chart.
docker build ${DOCKER_BUILD_ARGS} -t $(OPERATOR_IMAGE):${RELEASE_VERSION} .
docker push $(OPERATOR_IMAGE):${RELEASE_VERSION}
cd config/manager && $(KUSTOMIZE) edit set image controller=$(OPERATOR_IMAGE):${RELEASE_VERSION}
Expand Down

0 comments on commit 19fecad

Please sign in to comment.