From patchwork Tue Jan 14 20:03:40 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 13939429 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 82502209671 for ; Tue, 14 Jan 2025 20:03:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736885031; cv=none; b=miI2q1a10MRdh7RjQBPeCgq8nUAIMOm+Ej4Vi4KtYhC9itaD0qif+nmDRdplaJdLodTaLklD3XrTkL1M4khTGpRruIOMfNYyv5//NcKQnu4JFJ2h2ghPOlnHIy4XjLjPW1nrdwdu8aeBppTUjYBsU+cAwZGmVyUFER5Bj+WX+qI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736885031; c=relaxed/simple; bh=Wg/GpDEKKdP41DvuLcT1mlyFDaj9vIjZ2EyDhguYrRY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=qPo6E9IOp0+zlTNHJEp+Znu2Ez7LYoREJ4H0gwwHdh2pUDha0NlwQzRDPyiSbl0T8H4eQQMAaiuFlNKurfU5zPcHgggpR90n81tjd4zOujJ2/u6tCHvfgFLukifTQBepqtxO9iG6dJf2wlUvBG+xPWNeG2v7Go7EtzURh3kKqK0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZQotJLxm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZQotJLxm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1D671C4CEE3; Tue, 14 Jan 2025 20:03:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1736885031; bh=Wg/GpDEKKdP41DvuLcT1mlyFDaj9vIjZ2EyDhguYrRY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZQotJLxmQgNnTi6Dn+CDpiA+0e0E3m4VdCZAskBpEJjw3sR9xcDeAtqpHk+ZJfR0p Z5Es55oiUIXohTi80urGnLXeZcd6wmOhqxWvkzVRmbrjATw+6LJqlW9w07n0ct5ri0 V07mWLAtRop4PQojbLQSfO1bIYTzBZ15M2P9dWLALyHJbMohreUKxvIdTwvjbPGKeJ DjxCZqO6YxQ/q8OZGr1yfVcgw+UfFMdtiJrZv9ZQK/iMJNM1hqAsBpOrm9hJgXDYmE 1HgP/Um6GA+nlQNbWGUEy9PeT5oARjA+xFkK/q3wGlGjpo7FGOBr1aYuBXRJ656WJk 49vPVHF5tzpuA== From: cel@kernel.org To: Cc: Chuck Lever Subject: [PATCH v1 1/9] bringup: prevent the use of vagrant Date: Tue, 14 Jan 2025 15:03:40 -0500 Message-ID: <20250114200348.1706018-2-cel@kernel.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20250114200348.1706018-1-cel@kernel.org> References: <20250114200348.1706018-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever Vagrant virtualization has been deprecated for some time, but its been left in kdevops to allow time for folks to move over to guestfs, which has been the default for a while. It's time to start removing Vagrant, so remove the menu choice to select the use of Vagrant virtualization. This change will be quick to revert if there are loud complaints. Signed-off-by: Chuck Lever --- kconfigs/Kconfig.bringup | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/kconfigs/Kconfig.bringup b/kconfigs/Kconfig.bringup index 8effdcb8e9cb..a9aefc56e3fa 100644 --- a/kconfigs/Kconfig.bringup +++ b/kconfigs/Kconfig.bringup @@ -9,22 +9,6 @@ choice prompt "Node bring up method" default GUESTFS -config VAGRANT - bool "Vagrant for local virtualization (KVM / VirtualBox)" - select KDEVOPS_SSH_CONFIG_UPDATE_STRICT - select EXTRA_STORAGE_SUPPORTS_ZNS - select EXTRA_STORAGE_SUPPORTS_LARGEIO - select BRINGUP_SUPPORTS_CXL - depends on TARGET_ARCH_X86_64 - help - This option will enable use of Vagrant. Enable this if you want to - use local virtualization technologies such as KVM with libvirt or - VirtualBox. Enabling this feature will enable you to select which - target guests to use, and configures things for you. It will also - ensure dependencies are installed for Vagrant when running: - - make deps - config GUESTFS bool "Use guestfs-tools for local virtualization via KVM and libvirt" select KDEVOPS_ENABLE_GUESTFS