You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: revert "chore: parallelize docker build and push for release"
* fix: bump curl version in hostdriver image
bump curl version to working 7.81.0-1ubuntu1.21
Signed-off-by: Killian Muldoon <[email protected]>
* fix revert: "chore: parallelize docker build and push for release"
This reverts commit 4819b4e4dc5a848fb7d51402a19d7beb5e6a1d03.
Based on release-v25.7@639252b6bfbfeafe44f198e508b1c40babd93ec9
$(MAKE) -j$(PARALLEL_JOBS) --output-sync=target $(addprefix docker-build-,$(DOCKER_BUILD_TARGETS))## Build docker images for all DOCKER_BUILD_TARGETS. Architecture defaults to build system architecture unless overridden or hardcoded.
845
+
docker-build-all: $(addprefix docker-build-,$(DOCKER_BUILD_TARGETS))## Build docker images for all DOCKER_BUILD_TARGETS. Architecture defaults to build system architecture unless overridden or hardcoded.
.PHONY: docker-push-dpf-system # Push a multi-arch image for DPF System using `docker manifest`. The variable DPF_SYSTEM_ARCH defines which architectures this target pushes for.
933
-
docker-push-dpf-system:
934
-
# Push each architecture sequentially and build manifest incrementally
.PHONY: docker-push-ovn-kubernetes # Push a multi-arch image for ovn-kubernetes using `docker manifest`. The variable DPF_SYSTEM_ARCH defines which architectures this target pushes for.
1014
-
docker-push-ovn-kubernetes:
1015
-
# Push each architecture sequentially and build manifest incrementally
.PHONY: docker-push-storage-system # Push a multi-arch image for snap-csi-plugin using `docker manifest`. The variable DPF_SYSTEM_ARCH defines which architectures this target pushes for.
1135
-
docker-push-storage-system:
1136
-
# Push each architecture sequentially and build manifest incrementally
.PHONY: docker-push-storage-host # Push a multi-arch image for storage-host using `docker manifest`. The variable DPF_SYSTEM_ARCH defines which architectures this target pushes for.
1177
-
docker-push-storage-host:
1178
-
# Push each architecture sequentially and build manifest incrementally
.PHONY: docker-push-bfb-registry # Push a multi-arch image for BFB Registry using `docker manifest`. The variable HOST_ARCH defines which architectures this target pushes for.
1215
-
docker-push-bfb-registry:
1216
-
# Push each architecture sequentially and build manifest incrementally
.PHONY: docker-push-bfb-registry # Push a multi-arch image for BFB Registry using `docker manifest`. The variable DPF_SYSTEM_ARCH defines which architectures this target pushes for.
$(MAKE) -j$(PARALLEL_JOBS) --output-sync=target $(addprefix docker-push-,$(DOCKER_BUILD_TARGETS))## Push the docker images for all DOCKER_BUILD_TARGETS.
1210
+
docker-push-all: $(addprefix docker-push-,$(DOCKER_BUILD_TARGETS))## Push the docker images for all DOCKER_BUILD_TARGETS.
1235
1211
1236
1212
.PHONY: docker-push-dpf-system
1237
1213
docker-push-dpf-system: ## This is a no-op to allow using DOCKER_BUILD_TARGETS.
0 commit comments