We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e4066d + fb05cdb commit 0289e3cCopy full SHA for 0289e3c
Makefile
@@ -371,6 +371,14 @@ run-with-webhook: manifests generate fmt vet ## Run a controller from your host.
371
372
CRD_SCHEMA_CHECKER_VERSION ?= release-4.16
373
BRANCH ?= main
374
+.PHONY: force-bump
375
+force-bump: ## Force bump operator and lib-common dependencies
376
+ for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|ovn-operator|^replace' | awk '{print $$1}'); do \
377
+ go get $$dep@$(BRANCH) ; \
378
+ done
379
+ for dep in $$(cat api/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|ovn-operator|^replace' | awk '{print $$1}'); do \
380
+ cd ./api && go get $$dep@$(BRANCH) && cd .. ; \
381
382
383
PHONY: crd-schema-check
384
crd-schema-check: manifests
0 commit comments