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 4C370221D9E for ; Wed, 17 Sep 2025 14:28:05 +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=1758119286; cv=none; b=Mvl8FxTJPhQO8OLAbTdkrk2j9zyqpt+WmlD/TWRfu00BHZSzxZ36/QfPz4ACkxlWHAq7CFFeKmAwH6odhEOm7SuVq5UL3MI5zY6trSyIkCSoAwpqwp769dhqmvzTHiw9cYsM137LuhkAAM3LCaSYXIZpn9oJ04c9NnJjZUu4hbc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758119286; c=relaxed/simple; bh=3U2UqpcvzKIt1IuLzN5MKfkgGO7waVcQ55FtSK+L7aY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NAHkDsFetLv4/pB4SzigDPvb4drtOlBxiri8ejbkKhKG4iuvZ9mtiNytFaCW/Ku7gB8rwMsORkf9bqMAbIDVHUIDC7m02hr8pn9ZubuOd+bSh8HYJdbA2gaKlS1klgel5KV06ZfZQS030ALT0NeWM8LMv3ugv3Tp4ban8kLAqqM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=F7EQmYn0; 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="F7EQmYn0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B8E72C4CEE7; Wed, 17 Sep 2025 14:28:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758119285; bh=3U2UqpcvzKIt1IuLzN5MKfkgGO7waVcQ55FtSK+L7aY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=F7EQmYn0I3ApI9hyPUv95AGaV0cGqa8Ysoc4VlTX6wm6XdkTUY2O+rsTDCrhNWFQS 4yl2saBInAxYL8UgNww6zLBFUEXG2WsI19ko2XRwjcuorT8NfepnKr9RBEBAH6zGsu j2BLC3Xs0vrjixb3kk7rBYR8+dcQcCcRZl5VqUOgHA/vVtYf3qBkeDsnYkU31RNTEx eoaDEsLRiNGuTc9Ld2j84KvshwawgayxekgJwwbCsDxuGUjo34yxiMhujRG505/+Az xI9tR1VUxyoTfTh+27mc4Juv3AgU/e5Ux1+Ju2eT3BhUN9/oV5WbKXacL+qUnygc7n 3G1etzEwgncqA== Date: Wed, 17 Sep 2025 07:28:04 -0700 From: Luis Chamberlain To: Daniel Gomez Cc: Chuck Lever , kdevops@lists.linux.dev, Daniel Gomez Subject: Re: [PATCH 0/4] Fix inconsistent ansible-playbook patterns across kdevops Message-ID: References: <20250917-fix-groups-v1-0-d6cd940f8b6e@samsung.com> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250917-fix-groups-v1-0-d6cd940f8b6e@samsung.com> On Wed, Sep 17, 2025 at 10:32:35AM +0200, Daniel Gomez wrote: > This series fixes inconsistent ansible-playbook invocation patterns that > were introduced during recent A/B testing development work. The changes > standardize how kdevops uses Ansible by properly leveraging ansible.cfg > configuration and playbook host declarations instead of explicit CLI > overrides. > > Key improvements: > * Remove invalid custom host groups (ai, minio) and use standard kdevops > groups > * Eliminate redundant -i hosts and --inventory CLI arguments > * Remove unnecessary connection: local and -f fork parameters > * Fix documentation examples to show correct patterns > > The result is cleaner, more maintainable ansible invocations that > follow established kdevops architectural patterns. > > Sending this for review, specifically the terraform part (last patch). > > Signed-off-by: Daniel Gomez Thanks, applied and pushed! Luis