From cc994616a9249e951ac8e36bb54d0796161ddbb0 Mon Sep 17 00:00:00 2001 From: David Simansky Date: Mon, 6 May 2024 20:20:14 +0200 Subject: [PATCH] Update e2e-common.sh --- openshift/e2e-common.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/openshift/e2e-common.sh b/openshift/e2e-common.sh index f53f69002d..2bfbe89f83 100755 --- a/openshift/e2e-common.sh +++ b/openshift/e2e-common.sh @@ -223,7 +223,7 @@ install_serverless_operator_branch() { unset OPENSHIFT_CI # Install all components Serving,Eventing,Strimzi and Kafka - make install-all || failed=1 + make install-serving install-eventing || failed=1 subheader "Successfully installed serverless operator." # Workaround default 'https' scheme @@ -231,19 +231,6 @@ install_serverless_operator_branch() { --namespace knative-serving --type merge \ --patch '{"spec":{"config":{"network":{"default-external-scheme":"http"}}}}' || return 1 - header "Applying Strimzi Topic CR" - cat <<-EOF | oc apply -n kafka -f - || failed=1 -apiVersion: kafka.strimzi.io/v1beta1 -kind: KafkaTopic -metadata: - name: test-topic - labels: - strimzi.io/cluster: my-cluster -spec: - partitions: 100 - replicas: 1 -EOF - popd return $failed }