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 6ecf8d9 + c98deb7 commit d65d964Copy full SHA for d65d964
Makefile
@@ -402,6 +402,14 @@ kuttl-test-cleanup:
402
403
CRD_SCHEMA_CHECKER_VERSION ?= release-4.16
404
BRANCH ?= main
405
+.PHONY: force-bump
406
+force-bump: ## Force bump operator and lib-common dependencies
407
+ for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|telemetry-operator|^replace' | awk '{print $$1}'); do \
408
+ go get $$dep@$(BRANCH) ; \
409
+ done
410
+ for dep in $$(cat api/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|telemetry-operator|^replace' | awk '{print $$1}'); do \
411
+ cd ./api && go get $$dep@$(BRANCH) && cd .. ; \
412
413
414
PHONY: crd-schema-check
415
crd-schema-check: manifests
0 commit comments