將現有的 Cloud Volumes ONTAP 部署轉換為 Infrastructure Manager
自 2026 年 1 月 12 日起,Google Cloud 中新的 Cloud Volumes ONTAP 部署可以使用 Google Cloud Infrastructure Manager。Google 即將棄用 Google Cloud Deployment Manager,改用 Infrastructure Manager。因此,您需要手動執行遷移工具,將現有的 Cloud Volumes ONTAP 部署從 Deployment Manager 遷移到 Infrastructure Manager。此程序只需執行一次,之後您的系統將自動開始使用 Infrastructure Manager。
過渡工具可在 "NetApp 支援網站"中使用,並建立下列工件:
-
Terraform 工件,儲存於
conversion_output/deployment_name。 -
轉換結果摘要已儲存在 `conversion_output/batch_summary_<deployment_name>_<timestamp>.json`中。
-
偵錯記錄儲存在
<gcp project number>-<region>-blueprint-config/<cvo name>目錄中。您需要這些記錄進行疑難排解。<gcp project number>-<region>-blueprint-config儲存貯體儲存 Terraform 記錄。
|
|
使用 Infrastructure Manager 的 Cloud Volumes ONTAP 系統會將資料和記錄儲存在 Google Cloud Storage 儲存桶中。這些儲存桶可能會產生額外費用,但請勿編輯或刪除儲存桶及其內容:
|
-
請確保您的 Cloud Volumes ONTAP 系統版本為 9.16.1 或更高版本。
-
確保沒有透過 Google Cloud Console 手動編輯過任何 Cloud Volumes ONTAP 資源或其屬性。
-
請確保已啟用 Google Cloud API。請參閱 "啟用 Google Cloud API"。請確保除了其他 API 之外,還啟用了 Google Cloud Quotas API。
-
請確認 NetApp Console agent 的服務帳戶擁有所有必要的權限。請參閱 "控制台代理的 Google Cloud 權限"。
-
轉換工具使用以下網域。在您的網路中於連接埠 443 上啟用它們:
網域 港口 協定 方向 目的 cloudresourcemanager.googleapis.com
443
TCP
外傳
專案驗證
deploymentmanager.googleapis.com
443
TCP
外傳
部署探索
config.googleapis.com
443
TCP
外傳
Infrastructure Manager API
storage.googleapis.com
443
TCP
外傳
GCS 儲存貯體作業
iam.googleapis.com
443
TCP
外傳
服務帳戶驗證
compute.googleapis.com
443
TCP
外傳
Google Cloud 和 Terraform Import 與 Plan 使用的運算 API 呼叫
openidconnect.googleapis.com
443
TCP
外傳
驗證
oauth2.googleapis.com
443
TCP
外傳
OAuth2 權杖交換
registry.terraform.io
443
TCP
外傳
Terraform 提供者登錄
releases.hashicorp.com
443
TCP
外傳
Terraform 二進位下載
apt.releases.hashicorp.com
443
TCP
外傳
HashiCorp APT 存儲庫
us-central1-docker.pkg.dev
443
TCP
外傳
GCP Artifact Registry
metadata.google.internal
80
HTTP
內部
VM 元資料和驗證權杖
請依照下列步驟從 Deployment Manager 過渡到 Infrastructure Manager,並為現有的 Cloud Volumes ONTAP 部署執行該工具。
-
建立角色並將其附加到服務帳戶:
-
建立具有下列權限的 YAML 檔案:
title: NetApp Dm TO IM Convert Solution description: Permissions for the service account associated with the VM where the tool will run. stage: GA includedPermissions: - compute.addresses.get - compute.disks.get - compute.forwardingRules.get - compute.healthChecks.get - compute.instanceGroups.get - compute.instances.get - compute.regionBackendServices.get - config.deployments.create - config.deployments.get - config.deployments.getLock - config.deployments.lock - config.deployments.unlock - config.deployments.update - config.deployments.delete - config.deployments.updateState - config.operations.get - deploymentmanager.deployments.get - deploymentmanager.deployments.list - deploymentmanager.manifests.get - iam.serviceAccounts.get - storage.buckets.create - storage.objects.create - storage.objects.delete - storage.objects.get - storage.objects.list -
在 Google Cloud 中建立自訂角色,並賦予其 YAML 檔案中定義的權限。
`gcloud iam roles create dmtoim_convert_tool_role --project=PROJECT_ID \
--file=YAML_FILE_PATH`如需詳細資訊,請參閱 "建立和管理自訂角色"。 -
將自訂角色附加到您將用於建立 VM 的服務帳戶。
-
將 `roles/iam.serviceAccountUser`角色新增至此服務帳戶。請參閱 "服務帳戶概覽"。
-
-
建立一個具有以下組態的 VM 。您可以在此 VM 上執行此工具。
-
機器類型:Google Compute Engine 機器類型 e2-medium
-
作業系統:Ubuntu 25.10 AMD64 Minimal (映像:ubuntu-minimal-2510-amd64)
-
網路:防火牆允許 HTTP 和 HTTPs
-
磁碟大小:20GB
-
安全性:服務帳戶:您建立的服務帳戶
-
安全性:存取範圍 - 為每個 API 設定存取權限:
-
雲端平台:已啟用
-
Compute Engine :唯讀
-
儲存:唯讀 (預設)
-
Google Cloud Logging(以前稱為 Stackdriver Logging)API:僅寫入(預設)
-
Stackdriver Monitoring(現為 Google Cloud Operations 的一部分)API:僅寫入(預設)
-
服務管理:唯讀 (預設)
-
服務控制:已啟用 (預設)
-
Google Cloud Trace(以前稱為 Stackdriver Trace):僅寫入(預設)
-
-
-
使用 SSH 連線至新建立的 VM:
gcloud compute ssh dmtoim-convert-executor-vm --zone <region where VM is deployed> -
使用您的 NSS 憑證從 "NetApp 支援網站"下載轉換工具:
wget <download link from NetApp Support site> -
解壓縮下載的 TAR 檔:
tar -xvf <downloaded file name> -
下載並安裝以下必備套件:
-
Docker:28.2.2 build 28.2.2-0ubuntu1 或更新版本
-
Terraform:1.14.1 或更高版本
-
Python:3.13.7、python3-pip、python3 venv
sudo apt-get update sudo apt-get install python3-pip python3-venv -y wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com noble main" | sudo tee /etc/apt/sources.list.d/hashicorp.list sudo apt update && sudo apt install terraform sudo apt-get install -y docker.io sudo systemctl start dockerGoogle Cloud CLI
gcloud已預先安裝在虛擬機器上。
-
-
將目前使用者新增至 Docker 群組,以便工具無需
sudo權限即可使用 Docker。sudo usermod -aG docker $USER newgrp docker -
安裝轉換工具:
cd <folder where you extracted the tool> ./install.sh這會將工具安裝在隔離的環境中
dmconvert-venv,並驗證是否已安裝所有必要的軟體套件。 -
輸入工具的安裝環境:
source dmconvert-venv/bin/activate -
以 `non-sudo`使用者身分執行轉換工具。確保使用與 Console 代理的服務帳戶相同的服務帳戶,並且該服務帳戶擁有所有 "Google Cloud Infrastructure Manager 所需的權限"。
dmconvert \ --project-id=<the Google Cloud project ID for the Cloud Volumes ONTAP deployment> \ --cvo-name=<Cloud Volumes ONTAP system name> \ --service-account=<the service account attached to the Console agent>完成後此工具會顯示所有 Cloud Volumes ONTAP 系統及其 SVM 詳細資訊的清單。運行完成後,您可以查看所有已轉換系統的狀態。每個已轉換的系統都會以 <converted system name-imdeploy> 格式顯示在 Google Console 的 Infrastructure Manager 下,表示 Console 現在使用 Infrastructure Manager API 來管理該 Cloud Volumes ONTAP 系統。
轉換完成後,請勿在 Google Cloud Console 中刪除 Deployment Manager 的部署物件。此部署物件包含 Infrastructure Manager 用於管理 Cloud Volumes ONTAP 系統的元資料。
如果需要回滾轉換,則必須使用同一台虛擬機器。如果已轉換所有系統且無需回滾到 Deployment Manager,則可以刪除該虛擬機器。
復原轉換
如果您不想繼續轉換,可以按照以下步驟回溯到 Deployment Manager:
-
在同一個 您為執行該工具而建立的 VM 上,執行以下命令:
dmconvert \ --project-id=<the Google Cloud project ID for the Cloud Volumes ONTAP deployment> \ --cvo-name=<Cloud Volumes ONTAP system name> \ --service-account=<the service account attached to the Console agent> \ --rollback -
請等待復原完成。