创建 GCP 无服务器 VPC 连接时出错 ("code": 13)
Error while creating GCP Serverless VPC Connection ("code": 13)
尝试创建无服务器 VPC 连接但总是出现相同的错误
错误:(gcloud.compute.networks.vpc-access.connectors.create){
“代码”:13,
“消息”:“发生内部错误:无法创建 VPC 访问连接器。请删除连接器
}
已尝试以下方法
- 参考Link:Serverless VPC Access
- 已尝试 Troubleshooting 中的所有步骤 - 在上页底部提到
- 尝试了各种 IP 范围,例如 10.8.0.0、10.128.0.0、10.160.0.0 - 没用
- 创建了一个新项目并尝试在那里创建访问,结果相同
- Works 如果我将区域更改为 us-central1(而不是 asia-south1).见下文
gcloud compute networks vpc-access connectors create cloud-sql-connector \
--network default \
--region us-central1 \
--range 10.8.0.0/28
Created connector [cloud-sql-connector]
gcloud compute networks vpc-access connectors describe cloud-sql-connector --region us-central1
ipCidrRange: 10.8.0.0/28
maxThroughput: 300
minThroughput: 200
name: projects/PROJECT_ID/locations/us-central1/connectors/cloud-sql-connector
network: default
state: READY
- 失败 如果尝试使用 asia/south1(根据文档 supported regions 的一部分)
gcloud compute networks vpc-access connectors create sql-connector \
--network default \
--region asia-south1 \
--range 10.8.0.0/28
ERROR: (gcloud.compute.networks.vpc-access.connectors.create) {
"code": 13,
"message": "An internal error occurred: Failed to create a VPC Access connector. Please delete the connector manually."
}
该特定区域似乎一直存在问题,因为它已超出容量。
当我尝试使用 Cloud Console 而不是相关的 gcloud 命令创建连接器时,asia-south1 区域甚至没有出现。
请注意,您不是唯一报告此问题的用户。我会建议您在 GCP 的问题跟踪器中加注星标并监控以下 Public Issue,以从相关团队获取最新信息。
尝试创建无服务器 VPC 连接但总是出现相同的错误
错误:(gcloud.compute.networks.vpc-access.connectors.create){ “代码”:13, “消息”:“发生内部错误:无法创建 VPC 访问连接器。请删除连接器 }
已尝试以下方法
- 参考Link:Serverless VPC Access
- 已尝试 Troubleshooting 中的所有步骤 - 在上页底部提到
- 尝试了各种 IP 范围,例如 10.8.0.0、10.128.0.0、10.160.0.0 - 没用
- 创建了一个新项目并尝试在那里创建访问,结果相同
- Works 如果我将区域更改为 us-central1(而不是 asia-south1).见下文
gcloud compute networks vpc-access connectors create cloud-sql-connector \
--network default \
--region us-central1 \
--range 10.8.0.0/28
Created connector [cloud-sql-connector]
gcloud compute networks vpc-access connectors describe cloud-sql-connector --region us-central1
ipCidrRange: 10.8.0.0/28
maxThroughput: 300
minThroughput: 200
name: projects/PROJECT_ID/locations/us-central1/connectors/cloud-sql-connector
network: default
state: READY
- 失败 如果尝试使用 asia/south1(根据文档 supported regions 的一部分)
gcloud compute networks vpc-access connectors create sql-connector \
--network default \
--region asia-south1 \
--range 10.8.0.0/28
ERROR: (gcloud.compute.networks.vpc-access.connectors.create) {
"code": 13,
"message": "An internal error occurred: Failed to create a VPC Access connector. Please delete the connector manually."
}
该特定区域似乎一直存在问题,因为它已超出容量。
当我尝试使用 Cloud Console 而不是相关的 gcloud 命令创建连接器时,asia-south1 区域甚至没有出现。
请注意,您不是唯一报告此问题的用户。我会建议您在 GCP 的问题跟踪器中加注星标并监控以下 Public Issue,以从相关团队获取最新信息。