Skip to content

Commit

Permalink
[make]Add force-bump target to bump operator deps
Browse files Browse the repository at this point in the history
The new force-bump target bumps operator and lib-common dependencies of
this operator by tracking the same branch from these dependencies.

Related: OSPRH-8355
  • Loading branch information
gibizer committed Nov 25, 2024
1 parent 0b0ba57 commit 38113a0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -385,3 +385,13 @@ run-with-webhook: export METRICS_PORT?=8080
run-with-webhook: export HEALTH_PORT?=8081
run-with-webhook: manifests generate fmt vet ## Run a controller from your host.
/bin/bash hack/run_with_local_webhook.sh

BRANCH=main
.PHONY: force-bump
force-bump: ## Force bump operator and lib-common dependencies
for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|openstack-baremetal-operator|^replace' | awk '{print $$1}'); do \
go get $$dep@$(BRANCH) ; \
done
for dep in $$(cat api/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|openstack-baremetal-operator|^replace' | awk '{print $$1}'); do \
cd ./api && go get $$dep@$(BRANCH) && cd .. ; \
done

0 comments on commit 38113a0

Please sign in to comment.