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 2F24D1CF5C6 for ; Fri, 25 Jul 2025 08:13:37 +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=1753431218; cv=none; b=Rt8M/RyizlwpVDkohTXk4MPs0FQV0i+OMCWfpqHOPIy6iuQ4FyurCupE5SXM6DykGEbYaKElln4LPVipyUoBl0dZe8YlZoe8C1LQwDhNF+f5BjvVK5UXnrPGYvAQGkO39INeePC01PdkAY552Amj6akEKxgmcWOg+5Qx53Dk1+Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753431218; c=relaxed/simple; bh=JsZ6k6oXfekVFQpMct2I1LqYvYpip04TKF9jrqxYex4=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=KLfQXNtfig6geoCTeEZWgtrOdIYgMc1fi80/9JSII/6XPDr9N2aU5ZUjLKJBt6e2f0UxYza3sj37cEkpA+uK1cqNENan8O+gv9eoe1rgtzpodtr+vyNI1tAdS6Fyyb9R0DBoKZYrdzn4++wWKkSQAj1dJEIqHeyNHuZuUaE1psw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=u/zOyFr1; 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="u/zOyFr1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA79CC4CEE7; Fri, 25 Jul 2025 08:13:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1753431217; bh=JsZ6k6oXfekVFQpMct2I1LqYvYpip04TKF9jrqxYex4=; h=Date:Reply-To:Subject:To:Cc:References:From:In-Reply-To:From; b=u/zOyFr1iQv2NSyTPLyBL2snvTkZ7o00OyNDUHMRGBWDeQEj6YWt7h417UkOxzZt9 xHJL5l/VTblC/9j6r5J/XMQDvrnWHeAGMQXw82+enaVbCCHdKyVaBjYbwQ2tFwzRVc 5UWkRYTvbZ4Jh6Wqvq/87wia97DyAFF/CO14T4rzfNP35LcQ97DnRGsxVzw9FO3Dkr t7Kucmv56u0ku7o8GdvM4iZtsZ7ua4N+OnmO2Ae374wSwRS6UzgpqRLCb0kXMLoiqt 10zlvzom7Wlia1h3iaiLA1czXXdw3WgS0D8ul/kWHI80yIlqsV+FBfWwcb94bOp3eT QmavNHZW0FM0w== Message-ID: Date: Fri, 25 Jul 2025 10:13:35 +0200 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Reply-To: Daniel Gomez Subject: Re: [PATCH v5 07/12] gen_hosts: add service group to inventory templates To: Luis Chamberlain Cc: Chuck Lever , kdevops@lists.linux.dev, Daniel Gomez References: <20250724-ansible_cfg_inventory-v5-0-9bf1db24d9fa@samsung.com> <20250724-ansible_cfg_inventory-v5-7-9bf1db24d9fa@samsung.com> Content-Language: en-US From: Daniel Gomez Organization: kernel.org In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 24/07/2025 21.51, Luis Chamberlain wrote: > On Thu, Jul 24, 2025 at 09:36:13PM +0200, Daniel Gomez wrote: >> From: Daniel Gomez >> >> Introduce a new 'service' group in all inventory templates that includes >> service hosts (iscsi, nfsd, smbd, kdc). This provides a convenient way >> to target all service hosts collectively for operations like guestfs >> bringup and SSH configuration. >> >> The service group includes: >> - iscsi hosts (when kdevops_enable_iscsi is enabled) >> - nfsd hosts (when kdevops_nfsd_enable is enabled) >> - smbd hosts (when kdevops_smbd_enable is enabled) >> - kdc hosts (when kdevops_krb5_enable is enabled) >> >> This addresses issues where operations limited to 'baseline:dev' would >> miss required service hosts, causing workflow failures. >> >> Generated-by: Claude AI > > No newline needed Making sure I'm not adding this line this time... >> >> Signed-off-by: Daniel Gomez > > Reviewed-by: Luis Chamberlain Thanks! > > Luis