diff --git a/Makefile b/Makefile index 9d95c88..9c9598c 100644 --- a/Makefile +++ b/Makefile @@ -16,22 +16,22 @@ image-build: docker build \ --build-arg ARCH=$(ARCH) \ --build-arg TAG=$(TAG) \ - --tag $(ORG)/hardened-multus:$(TAG) \ - --tag $(ORG)/hardened-multus:$(TAG)-$(ARCH) \ + --tag $(ORG)/hardened-multus-cni:$(TAG) \ + --tag $(ORG)/hardened-multus-cni:$(TAG)-$(ARCH) \ . .PHONY: image-push image-push: - docker push $(ORG)/hardened-multus:$(TAG)-$(ARCH) + docker push $(ORG)/hardened-multus-cni:$(TAG)-$(ARCH) .PHONY: image-manifest image-manifest: DOCKER_CLI_EXPERIMENTAL=enabled docker manifest create --amend \ - $(ORG)/hardened-multus:$(TAG) \ - $(ORG)/hardened-multus:$(TAG)-$(ARCH) + $(ORG)/hardened-multus-cni:$(TAG) \ + $(ORG)/hardened-multus-cni:$(TAG)-$(ARCH) DOCKER_CLI_EXPERIMENTAL=enabled docker manifest push \ - $(ORG)/hardened-multus:$(TAG) + $(ORG)/hardened-multus-cni:$(TAG) .PHONY: image-scan image-scan: - trivy --severity $(SEVERITIES) --no-progress --ignore-unfixed $(ORG)/hardened-multus:$(TAG) + trivy --severity $(SEVERITIES) --no-progress --ignore-unfixed $(ORG)/hardened-multus-cni:$(TAG)