From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 25B2621C9E5 for ; Sun, 31 Aug 2025 04:00:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756612807; cv=none; b=a3ozsBwb2cg5B2eOl7z/ahBto3+DTfUN4oYLoQODDY9Je/6Cvyh40vESU16xskf8yIK4hMnhBUSpmSy9xnrWrOwMrt61fQ9niAlJL8Lu/cwP5TT8GRu8qlwNcY4wKtn4V2Tbbf56plcBjRSfqjJiMI/MzaxpXrQj9GBBTcXFw4E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756612807; c=relaxed/simple; bh=j+djH7hUNhFv7/Pn8r1moIZ+FlB20m7EpfuzeCZiG2g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CqocnNTKnorosKb9DFA5EYx6k6zEn7p/0eIer9qLSzbdZSWkLrKRkYMzb0Qu3bvmsP9EBFY+myCCbGsU0brjBJHnDOJJZbzhaUfU1Cc16xzlSpjuOfvlgtxstNToXSXmQB2rcpm/LQagb/ObO9iV63qwNLL18uKEjlqefWrTrsk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=d2nxrdXj; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="d2nxrdXj" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=ltHoObgf6VzE5LHeMXRxX8A+YWGdGYids+ZRPBiPH7o=; b=d2nxrdXjlUDyeawNKwfY6egdF3 4nwF9zwB8ujGbPgUaH2688udlQLj/7z6FcQkJfC1hbViY3LY5NngPciCWs7H3pXGTArxCA8G5LLKq BbphlTcMncMdMHJjk5jzo5bKagUCFnP5zh0mi1DBy0OLapY9t0MdzFgkAG4IOTwpYkobi/rkCpp2v NeNGCpwIpnRqQ1ujw/LQpqert23378rbXX3ZIRp5DyUQH5UxjHSakVBnKV6IgkUR0I87EsUACBCfE nNZDVR50E1Ijn2qJXdn8zJbsCQGg3dqpiRl1tWHviFoU6ExSsWZCQ8/VILxpVRNa6Xba9fvdJfq7S 5ksVWpvg==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1usZEb-000000093ra-2TCw; Sun, 31 Aug 2025 04:00:05 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain , Your Name Subject: [PATCH v3 01/10] gitignore: add entries for Lambda Labs dynamic configuration Date: Sat, 30 Aug 2025 20:59:55 -0700 Message-ID: <20250831040004.2159779-2-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250831040004.2159779-1-mcgrof@kernel.org> References: <20250831040004.2159779-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain Add gitignore patterns for Lambda Labs cloud provider files: - Dynamic Kconfig generation (*.generated) - API credential files (.lambdalabs_*) - Cloud configuration cache files - SSH configuration files These files are generated at runtime and should not be tracked. Generated-by: Claude AI Signed-off-by: Your Name --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 2bea9d4..b725aba 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,12 @@ archive/ # NixOS generated files nixos/generated/ + +# Dyanmic cloud kconfig files +terraform/lambdalabs/kconfigs/Kconfig.compute.generated +terraform/lambdalabs/kconfigs/Kconfig.images.generated +terraform/lambdalabs/kconfigs/Kconfig.location.generated +terraform/lambdalabs/.terraform_api_key +.cloud.initialized + +scripts/__pycache__/ -- 2.50.1