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 78D2734D3B8 for ; Sat, 1 Nov 2025 00:50:24 +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=1761958224; cv=none; b=bl0iUKaabIiD1kqE6zkgBGLfK432priB5PhsfyYeUIOyZ8v24UzUftD/a389ZXnJu/jMsi5xkUTnqjvUp+Ae023r3GZ2zdXVrgMlV8ZK4P1TNpMJnOqMrNbRqSnSz5wlU9i9WtpJ0W2CtGbTTNPMG1UBoF5u5Qg41qkNKNNAxUI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761958224; c=relaxed/simple; bh=4plCKHyXRp4U+QRPMoZYNMAAi5p2mkVqGshZ1izi8/M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Jpa2VzmT2k08eumtm6rNtDIP87sRkZ0ADTyutcyZZZK87Xs5P/aCDc8RpQ06BzvpqXuH3ifIxY+sahtWINACQgXA6qPVp3LVsMnICuZJEKh6mop8Z80C9LtvZX30xeoLESjFk0ftG2T4tuX+O7sN/BOLXFhtyRzZ1E6l5yNeC54= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=D1iCl/is; 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="D1iCl/is" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BFA2DC4CEFB; Sat, 1 Nov 2025 00:50:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1761958224; bh=4plCKHyXRp4U+QRPMoZYNMAAi5p2mkVqGshZ1izi8/M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=D1iCl/isT9sOr/mAGGaxJT3nYzE0xLrFv2OftSulS7is+4qBV7Iu+SSvNQmEJXCQS QhwR3vGmqPJaosL+7+98+JBSF8Z8KhEoHQsjRjud51JvQUUG7woeB9e0if2wnO3aLV vgghfIdE5f+OHj/OM+UrotGeEuxnqLysuUph/ud7vNAkHTdVN9WFFUZWesIpLz5b1+ GRdfP7F0lJQr1bnLqpBNbH0jFmGfL2xJvmC3EAhHwt6UFqAp2HLQlUT/tZDbwBgfkW 6hscPJ7XiJTcgFt9tNHr/HgmtUGCR5QwQ96XSK9MGPAycUyCKw54d2XXswzrpZORyl /x3WfnxWtXjkA== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH 1/7] docs: Remove OpenStack documentation Date: Fri, 31 Oct 2025 20:50:14 -0400 Message-ID: <20251101005020.3492781-3-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251101005020.3492781-1-cel@kernel.org> References: <20251101005020.3492781-1-cel@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 From: Chuck Lever Remove all OpenStack-related documentation from kdevops-terraform.md including the general OpenStack section and the minicloud-specific configuration instructions. Generated-by: Claude AI Signed-off-by: Chuck Lever --- docs/kdevops-terraform.md | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/docs/kdevops-terraform.md b/docs/kdevops-terraform.md index 3291444d2f72..8f511ef5ecf3 100644 --- a/docs/kdevops-terraform.md +++ b/docs/kdevops-terraform.md @@ -11,7 +11,6 @@ Below are the list of clouds providers currently supported: * aws - Amazon Web Service * gce - Google Cloud Compute * oci - Oracle Cloud Infrastructure - * openstack (special minicloud support added) You configure which cloud provider you want to use, what feature from that cloud provider you want to use, and then you can use kdevops to select which @@ -173,40 +172,6 @@ application id. Set these values via "make menuconfig" in the Terraform Providers submenu. -### Openstack - -Openstack is supported. This solution relies on the clouds.yaml file for -openstack configuration. This simplifies setting up authentication -considerably. - -#### Minicloud Openstack support - -minicloud has a custom setup where the you have to SSH with a special port -depending on the IP address you get, if you enable minicloud we do this -computation for you and tell you where to SSH to, but we also have support -to update your ~/ssh/config for you. - -Please note that minicloud takes a while to update its ports / mac address -tables, and so you may not be able to log in until after about 5 minutes after -you are able to create the nodes. Have patience. - -Your terraform.tfvars may look something like: - -``` -instance_prefix = "my-random-project" - -image_name = "Debian 10 ppc64le" -flavor_name = "minicloud.tiny" - -ssh_config_pubkey_file = "~/.ssh/minicloud.pub" -ssh_config = "~/.ssh/config" -ssh_config_user = "debian" -ssh_config_update = "true" -ssh_config_use_strict_settings = "true" -ssh_config_backup = "true" - -``` - ### AWS - Amazon Web Services AWS is supported. For authentication, kdevops relies on a shared -- 2.51.0