From patchwork Mon Aug 16 21:30:45 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Numan Siddique X-Patchwork-Id: 1517347 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.138; helo=smtp1.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4GpS5S54L4z9sRK for ; Tue, 17 Aug 2021 07:31:08 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id CC48B80DE7; Mon, 16 Aug 2021 21:31:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zIIsJdpJy5zZ; Mon, 16 Aug 2021 21:31:03 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by smtp1.osuosl.org (Postfix) with ESMTPS id 2802C80C98; Mon, 16 Aug 2021 21:31:02 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 048C8C001A; Mon, 16 Aug 2021 21:31:02 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [IPv6:2605:bc80:3010::137]) by lists.linuxfoundation.org (Postfix) with ESMTP id 54865C000E for ; Mon, 16 Aug 2021 21:31:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 403B940467 for ; Mon, 16 Aug 2021 21:31:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gMQhqAVzGMHs for ; Mon, 16 Aug 2021 21:30:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by smtp4.osuosl.org (Postfix) with ESMTPS id 3670F40280 for ; Mon, 16 Aug 2021 21:30:57 +0000 (UTC) Received: (Authenticated sender: numans@ovn.org) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id A4E9A60006; Mon, 16 Aug 2021 21:30:48 +0000 (UTC) From: numans@ovn.org To: dev@openvswitch.org Date: Mon, 16 Aug 2021 17:30:45 -0400 Message-Id: <20210816213045.2245170-1-numans@ovn.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Subject: [ovs-dev] [PATCH resend ovn] CI: Use ovn-k8s master commit for k8s kind tests. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" From: Numan Siddique All the ovn-k8s tests in OVN are now failing since a few weeks. Bumping the ovn-k8s commit to the latest one in my private CI run passed all the tests except the control plane test [1]. control plane test is failing since a while and this needs to be debugged. ovn-k8s repo runs the same k8s kind tests with OVN version present in fedora 33 before merging a patch. So I think it should be fine to switch to the master commit of ovn-k8s. [1] - https://github.com/numansiddique/ovn/runs/3315367278 Signed-off-by: Numan Siddique Acked-by: Mark D. Gray --- .github/workflows/ovn-kubernetes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ovn-kubernetes.yml b/.github/workflows/ovn-kubernetes.yml index 03721c109..f9ea33247 100644 --- a/.github/workflows/ovn-kubernetes.yml +++ b/.github/workflows/ovn-kubernetes.yml @@ -11,7 +11,7 @@ on: env: GO_VERSION: "1.16.3" K8S_VERSION: v1.20.2 - OVNKUBE_COMMIT: "c9cd438575f11584871309740c78dde29752940b" + OVNKUBE_COMMIT: "master" KIND_CLUSTER_NAME: ovn KIND_INSTALL_INGRESS: true KIND_ALLOW_SYSTEM_WRITES: true