GKE - 配额 - 超出全球使用中的 IP 地址
GKE - Quotas - In-use IP addresses global exceeded
最近我们试图添加一个新的入口,但遇到了这个错误。
QUOTA_EXCEEDED - Quota 'IN_USE_ADDRESSES' exceeded. Limit: 8.0 globally.
前往 IAM -> 配额页面,我们观察到 'In-use IP addresses global' 确实是 8 分中的 8 分。
接下来我们想知道我们在哪里使用这些 IP 地址。前往 VPC 网络 -> 外部 IP 地址仅列出 6 个; 4分配给k8s转发规则,2分配给我们的两个k8s节点。
我们的问题; 'In-use IP addresses global' 的其他人在哪里消费?
正如@johnhanley 所报告的那样,您可以看到 in-use IP addresses。
gcloud compute addresses list --global
另请检查 External IP addresses quota,以了解这些限制的工作原理。
请注意加星标的部分:
Note: If the same IP address is assigned to more than one forwarding rule, Google Cloud counts and adds each usage of the address towards the IN_USE_ADDRESSES quota rather than a unique count of IP address objects that are used.
要查看当前配额限制,请从 Google Cloud Console 导航至:
IAM & Admin -> Quotas -> Service (Compute Engine API) -> Metric(In-use
IP addresses)
如果您愿意,可以按首选位置进行过滤。您可以申请 increase the quota,请务必说明您决定为新配额输入的人数的理由。
最近我们试图添加一个新的入口,但遇到了这个错误。
QUOTA_EXCEEDED - Quota 'IN_USE_ADDRESSES' exceeded. Limit: 8.0 globally.
前往 IAM -> 配额页面,我们观察到 'In-use IP addresses global' 确实是 8 分中的 8 分。
接下来我们想知道我们在哪里使用这些 IP 地址。前往 VPC 网络 -> 外部 IP 地址仅列出 6 个; 4分配给k8s转发规则,2分配给我们的两个k8s节点。
我们的问题; 'In-use IP addresses global' 的其他人在哪里消费?
正如@johnhanley 所报告的那样,您可以看到 in-use IP addresses。
gcloud compute addresses list --global
另请检查 External IP addresses quota,以了解这些限制的工作原理。
请注意加星标的部分:
Note: If the same IP address is assigned to more than one forwarding rule, Google Cloud counts and adds each usage of the address towards the IN_USE_ADDRESSES quota rather than a unique count of IP address objects that are used.
要查看当前配额限制,请从 Google Cloud Console 导航至:
IAM & Admin -> Quotas -> Service (Compute Engine API) -> Metric(In-use IP addresses)
如果您愿意,可以按首选位置进行过滤。您可以申请 increase the quota,请务必说明您决定为新配额输入的人数的理由。