🔗privatelink
- プラグイン
- zilliz
- ソース
- GitHub で見る ↗
説明
次のような場合に使用: ユーザーが Zilliz Cloud 上で、利用可能な PrivateLink エンドポイントサービスの一覧取得、プロジェクトに対する PrivateLink エンドポイントの一覧取得・作成・削除、またはエンドポイントのホワイトリスト管理を行いたい場合。
原文を表示
Use when the user wants to list available PrivateLink endpoint services, list/create/delete PrivateLink endpoints for a project, or manage the endpoint whitelist on Zilliz Cloud.
ユースケース
- ✓利用可能なPrivateLinkエンドポイント一覧を取得
- ✓プロジェクトのPrivateLinkエンドポイント一覧を取得
- ✓PrivateLinkエンドポイントを作成
- ✓PrivateLinkエンドポイントを削除
- ✓エンドポイントのホワイトリストを管理
本文(日本語訳)
前提条件
- CLIがインストール済みでログイン済みであること(setup skillを参照)。
- エンドポイントを紐付けるプロジェクトが存在すること(project-region skillを参照)。
コマンドリファレンス
利用可能なPrivateLinkエンドポイントサービスの一覧表示
zilliz privatelink list-services
# オプション: --region-id <クラウドリージョンでフィルタリング>
Privatelinkの一覧表示
zilliz privatelink list --project-id <project-id>
Privatelinkの作成
zilliz privatelink create \
--project-id <project-id> \
--region-id <cloud-region> \
--endpoint-id <vpc-endpoint-id>
# オプション: --gcp-project-id <gcp-project-id>
Privatelinkの削除
zilliz privatelink delete --project-id <project-id> --endpoint-id <endpoint-id-to-delete>
PrivateLinkエンドポイントのホワイトリストへのリージョン追加
zilliz privatelink add-whitelist --project-id <project-id> --region-id <cloud-region-to-whitelist>
ガイダンス
-
PrivateLinkを使用すると、クラスターをパブリックインターネット経由ではなく、クラウドプロバイダーのプライベートネットワーク(AWS PrivateLink、GCP Private Service Connect、Azure Private Link)経由で接続できます。 エンドポイントはプロジェクトおよびリージョン単位でスコープされます。
-
新規エンドポイントの設定ワークフロー:
zilliz privatelink list-services --region-id <region>を実行し、対象リージョンのendpointServiceの値とwhitelistRequiredがtrueかどうかを確認する。whitelistRequiredがtrueの場合は、先にzilliz privatelink add-whitelist --project-id <id> --region-id <region>を実行し、対象リージョンでそのプロジェクトがエンドポイントを紐付けられるよう許可しておく。- 自身のクラウドアカウント上でVPCエンドポイントを作成し(AWS/GCP/Azureのコンソールまたはインフラコード経由で帯域外に実施)、そのエンドポイントID(例:
vpce-xxxx)を控えておく。 zilliz privatelink create --project-id <id> --region-id <region> --endpoint-id <vpce-id>で登録する。GCPの場合は--gcp-project-id <gcp-project>も合わせて指定すること。
-
listはプロジェクト単位での実行となります:zilliz privatelink list --project-id <id>。 グローバルな一覧表示はできません。 -
deleteは取り消し不可の操作です。特に本番環境では、必ずユーザーに確認を取ってください。 削除後、該当エンドポイントからの既存の接続は即座に切断されます。 -
クラスターに対してPrivateLinkを有効化すると、クラスターのエンドポイントURLがプライベートDNS形式に切り替わります。
zilliz cluster describe --cluster-id <id>を再実行して最新のエンドポイントを取得し、接続先の設定を更新してください。
原文(English)を表示
Prerequisites
- CLI installed and logged in (see setup skill).
- A project to attach endpoints to (see project-region skill).
Commands Reference
List available PrivateLink endpoint services
zilliz privatelink list-services
# Optional: --region-id <filter-by-cloud-region>
List Privatelinks
zilliz privatelink list --project-id <project-id>
Create a Privatelink
zilliz privatelink create \
--project-id <project-id> \
--region-id <cloud-region> \
--endpoint-id <vpc-endpoint-id>
# Optional: --gcp-project-id <gcp-project-id>
Delete a Privatelink
zilliz privatelink delete --project-id <project-id> --endpoint-id <endpoint-id-to-delete>
Add region to PrivateLink endpoint whitelist
zilliz privatelink add-whitelist --project-id <project-id> --region-id <cloud-region-to-whitelist>
Guidance
- PrivateLink lets a cluster be reached over a cloud-provider private network (AWS PrivateLink, GCP Private Service Connect, Azure Private Link) instead of the public internet. Endpoints are scoped to a project and a region.
- Workflow for a new endpoint:
zilliz privatelink list-services --region-id <region>to find theendpointServicevalue for that region (and whetherwhitelistRequiredis true).- If
whitelistRequiredis true, callzilliz privatelink add-whitelist --project-id <id> --region-id <region>first so the project is allowed to attach an endpoint in that region. - Create the VPC endpoint in your own cloud account (out-of-band, in the AWS/GCP/Azure console or via IaC) and capture its endpoint ID (e.g.
vpce-xxxx). - Register it with
zilliz privatelink create --project-id <id> --region-id <region> --endpoint-id <vpce-id>. For GCP, also pass--gcp-project-id <gcp-project>.
listis per-project:zilliz privatelink list --project-id <id>. There is no global listing.deleteis irreversible -- always confirm with the user, especially in production. Existing connections from that endpoint stop working immediately.- After enabling PrivateLink for a cluster, the cluster's endpoint URL switches to the private DNS form. Re-run
zilliz cluster describe --cluster-id <id>to fetch the updated endpoint and update any consumer config.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。