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 90EF8280A5F for ; Wed, 27 Aug 2025 21:29:04 +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=1756330146; cv=none; b=fkruGXqhSTL2OlVNKRtSLGIcUI4GSn24GodGh+gw8cs774WBQCm+wTwj1ZiYvBoZhddVdawa1WDGJJ0zc7PWtzWiWerNVHIfL038GeUK9NArlMrt3RqcBC86aVUT2nRN768o1c8QAfAUAR9T/29HRtaau1V8k6ZvTYpZMB29CXQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756330146; c=relaxed/simple; bh=tGPiQEFOlGDuswJMy2pe0d86jrfoOns4onZVFEI9VvU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GZZ7OhOCvTBdaROW55/IAqf2Q+nR7OVyHwjud44d7jTTasaJfdTKSAairFb8Fi8haNgiX9/K2ObYwAJOzMj6Bt1I6fMb/v8YzOuIEHDEB2VQ+0Ofrufu9e2hwHBMWpi4dNP+viljO+9IV2eyItQcljabpp30/AJefP+QiAxbSKw= 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=CZnOqr9k; 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="CZnOqr9k" 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=zGkOY6Cwe4UfXcTpQy+iNUDstyTllzhqOOSfhq8STD8=; b=CZnOqr9kco8gz/xB8TtOc31OBK /8xHMJDcBXl3e7NdxgFxRC1flMFdq6QiFE0G3gWOYwL99bVdv+Ttj5ZtiWJEq5ZVRsF+eaTN+7JS/ iVQqiL07+BqXNHVNCboURb6etapaHRsGuB8WNehpU5iqBDocoGKJLWY9Cvs9gvc7u1VGXC2CcXB6i cfHeB1YB0mUZh3Epbn4lBOHriUTWdOVPhWUZiKngLy35MuwbNeI3FEf+oAV/fTVYaKkNsNA2HE00c +AKHrCSj/pf55UbNodIg6t3+5KX7TtJR+vEPd9aM4/7ux7geeLVk0/4JvZJMNyMikh/zPFw1qorfw S14DEy5g==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1urNhY-0000000GsJC-1440; Wed, 27 Aug 2025 21:29:04 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH v2 01/10] gitignore: add entries for Lambda Labs dynamic configuration Date: Wed, 27 Aug 2025 14:28:52 -0700 Message-ID: <20250827212902.4021990-2-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250827212902.4021990-1-mcgrof@kernel.org> References: <20250827212902.4021990-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 files that will be dynamically generated or created during runtime. These include: - Dynamic Kconfig files generated from API queries - Terraform API key storage - Cloud initialization marker - Python cache directories This prepares the repository for Lambda Labs cloud provider support by ensuring generated files won't be accidentally committed. Generated-by: Claude AI Signed-off-by: Luis Chamberlain --- .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