From b52fe7b607cc4dab439ee5ff0429051766e180d9 Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Wed, 17 Nov 2021 14:55:11 +0100 Subject: [PATCH] :dizzy: Remove distributed builds and manifest generation... Signed-off-by: Matthias Wessendorf --- Makefile | 4 ---- openshift/release/generate-release.sh | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Makefile b/Makefile index 301d8ae084..359a46f525 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,6 @@ install: go build -o $(GOPATH)/bin/source_controller ./cmd/source/controller/ go build -o $(GOPATH)/bin/consolidated_controller ./cmd/channel/consolidated/controller/ go build -o $(GOPATH)/bin/consolidated_dispatcher ./cmd/channel/consolidated/dispatcher/ - go build -o $(GOPATH)/bin/distributed_controller ./cmd/channel/distributed/controller/ - go build -o $(GOPATH)/bin/distributed_dispatcher ./cmd/channel/distributed/dispatcher/ go build -o $(GOPATH)/bin/migrate $(MIGRATE_IMAGE) .PHONY: install @@ -66,8 +64,6 @@ generate-dockerfiles: rm -rf openshift/ci-operator/knative-images/* ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images $(CORE_IMAGES) ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images source_controller - ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images distributed_controller - ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images distributed_dispatcher ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images consolidated_controller ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images consolidated_dispatcher ./openshift/ci-operator/generate-dockerfiles.sh openshift/ci-operator/knative-images $(MIGRATE_IMAGE) diff --git a/openshift/release/generate-release.sh b/openshift/release/generate-release.sh index ed12263619..3a04eee97b 100755 --- a/openshift/release/generate-release.sh +++ b/openshift/release/generate-release.sh @@ -8,7 +8,6 @@ source_output_file="openshift/release/knative-eventing-kafka-source-ci.yaml" source_postinstall_output_file="openshift/release/knative-eventing-kafka-source-postinstall-ci.yaml" channel_output_file="openshift/release/knative-eventing-kafka-channel-ci.yaml" channel_postinstall_file="openshift/release/knative-eventing-kafka-channel-postinstall-ci.yaml" -distributed_channel_output_file="openshift/release/knative-eventing-kafka-distributed-channel-ci.yaml" if [ "$release" == "ci" ]; then image_prefix="registry.ci.openshift.org/openshift/knative-nightly:knative-eventing-kafka-" @@ -25,6 +24,3 @@ resolve_resources config/source/post-install $source_postinstall_output_file $im # the channel parts resolve_resources config/channel/consolidated $channel_output_file $image_prefix $tag resolve_resources config/channel/post-install $channel_postinstall_file $image_prefix $tag - -# the distributed channel parts -resolve_resources config/channel/distributed $distributed_channel_output_file $image_prefix $tag