From mboxrd@z Thu Jan 1 00:00:00 1970 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 7B941284685 for ; Mon, 14 Apr 2025 17:05:49 +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=1744650349; cv=none; b=GPtXq47Ty/8ghbSNsuCrC4nkmvuIB5k6M2A7GomT+zs97EIQybqj5x3Pt+I6n8ciGRQiIVbNjKRSh6VLXcrEJoqpNYE6NWWqaIw9YqXrYUEktxpvYKtxg3CBQXdX4vBhJOcqGwWKFXlrZnWgHaq8o9+isdSxXct77tCHpx4bG80= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744650349; c=relaxed/simple; bh=CNDOnPzaWci6z0O8S0zMNIDc0hnBe1p9cMST7x+bEBU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Ld09rEyTzqrRh2XCU8BkUJ2Y+cG7KIXAa/mxIKBwIqVcnryNcXMIJM1bElLFlJNgGAXGoz//DJj5loJx1F5Y5/dvlT67QgAvE7lVk8qv67d6PiYNvKH6a2Ls2Tjlw5NyyFB7NTEXoanfOerj3VTQvwjGAttss2Qk6ou52Kh2JOY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DPOt+cu6; 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="DPOt+cu6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AD9C0C4CEEA; Mon, 14 Apr 2025 17:05:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1744650349; bh=CNDOnPzaWci6z0O8S0zMNIDc0hnBe1p9cMST7x+bEBU=; h=From:To:Cc:Subject:Date:From; b=DPOt+cu6tU3pX9Qyesf6flM36CA991H1Z0IfK+XwZLXs/xwadleDvIHEJjV5qBD/o KRgty1ZqScXoGAzPj1hiKKO4Is0C/9/Yi6wTBFlXJSC48HJZuGDvaz0BWbuy561kHh K9aUzB5/gJ3BdkGCoQ25Vys8YAFyxQTHvtfqSn3vjj4JaFmSsMiCVKF1KqWTPLCf8B 9wPVJZJ7MVQiSY87Dn5pg+e5D6Yw1zRFnJRAkM56BEDtWaixCOE5WSYfqCCLRY1mqf WQFhu7IIg9hnLylGe6g2CXI0seIYODNnNf+p0Nd8cjiRAX7zstUakRszSYELdyoKXY r7KxtRu2DjukQ== From: cel@kernel.org To: Cc: Chuck Lever Subject: [PATCH v2 0/4] Add uniquifier to storage pool path Date: Mon, 14 Apr 2025 13:05:42 -0400 Message-ID: <20250414170546.1995982-1-cel@kernel.org> X-Mailer: git-send-email 2.49.0 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever I'd like to be able to run more than one instance of kdevops per physical host. Currently the kdevops guestfs set-up steers all storage pool activity into ${STORAGE_POOL}/kdevops/guestfs, which means there's a good change that two different logged-in users will create virtual machines whose names, OS base images, and block devices will interfere with each other. So far I haven't been able to get the other storage pool-related settings to add sufficient uniqueness to prevent this conflict. v2 introduces some additional clean-ups, and attempts to address review comments. Chuck Lever (4): guestfs: Fix definition of guestfs_storage_dir install_vagrant: Remove this role Replace STORAGE_POOL_PATH with LIBVIRT_STORAGE_POOL_PATH guestfs: Per-user storage pools Makefile.kdevops | 6 - docs/ansible-roles.md | 1 - docs/kdevops-vagrant.md | 3 - kconfigs/Kconfig.guestfs | 7 +- kconfigs/Kconfig.libvirt | 2 +- playbooks/install_vagrant.yml | 4 - playbooks/roles/install_vagrant/README.md | 46 ------ playbooks/roles/install_vagrant/Vagrantfile | 3 - .../roles/install_vagrant/defaults/main.yml | 38 ----- .../files/ruby_extensions_devel_key.pub | 20 --- .../roles/install_vagrant/files/vagrant.pub | 21 --- .../tasks/install-deps/debian/main.yml | 86 ---------- .../tasks/install-deps/fedora/main.yml | 14 -- .../tasks/install-deps/main.yml | 27 ---- .../tasks/install-deps/redhat/main.yml | 148 ------------------ .../tasks/install-deps/suse/add_obs_repo.yml | 137 ---------------- .../tasks/install-deps/suse/main.yml | 119 -------------- .../roles/install_vagrant/tasks/main.yml | 43 ----- .../tasks/enable-user/redhat/main.yml | 8 +- scripts/bringup.Makefile | 1 - scripts/bringup_guestfs.sh | 3 +- scripts/destroy_guestfs.sh | 2 +- scripts/guestfs.Makefile | 2 +- 23 files changed, 9 insertions(+), 732 deletions(-) delete mode 100644 playbooks/install_vagrant.yml delete mode 100644 playbooks/roles/install_vagrant/README.md delete mode 100644 playbooks/roles/install_vagrant/Vagrantfile delete mode 100644 playbooks/roles/install_vagrant/defaults/main.yml delete mode 100644 playbooks/roles/install_vagrant/files/ruby_extensions_devel_key.pub delete mode 100644 playbooks/roles/install_vagrant/files/vagrant.pub delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/debian/main.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/fedora/main.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/main.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/redhat/main.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/suse/add_obs_repo.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/install-deps/suse/main.yml delete mode 100644 playbooks/roles/install_vagrant/tasks/main.yml -- 2.49.0