Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR builder failing with: Quota 'NETWORKS' exceeded. Limit: 75.0 #26270

Closed
zmerlynn opened this issue May 25, 2016 · 11 comments
Closed

PR builder failing with: Quota 'NETWORKS' exceeded. Limit: 75.0 #26270

zmerlynn opened this issue May 25, 2016 · 11 comments
Assignees
Labels
area/test-infra priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now.

Comments

@zmerlynn
Copy link
Member

From http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-test-e2e-gce/41958/:

+++ Staging server tars to Google Storage: gs://kubernetes-staging-b6e85ca3f3/e2e-gce-agent-pr-5-2-devel
+++ kubernetes-server-linux-amd64.tar.gz uploaded (sha1 = a9d0980fd8e8964b93de951441da59eb23274b3f)
+++ kubernetes-salt.tar.gz uploaded (sha1 = c6ad0892e67923780b9ed9ac687799a14525082f)
+++ kubernetes-manifests.tar.gz uploaded (sha1 = 31078c562df80a6db7e20e97ec61f975a4c002db)
Creating new network: e2e-gce-agent-pr-5-2
WARNING: You are creating a legacy network. Using --mode=legacy will be required in future releases.
ERROR: (gcloud.compute.networks.create) Some requests did not succeed:
 - Quota 'NETWORKS' exceeded. Limit: 75.0
@zmerlynn zmerlynn added priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now. area/test-infra labels May 25, 2016
@zmerlynn
Copy link
Member Author

@dims
Copy link
Member

dims commented May 25, 2016

@zmerlynn - Are there public logs?

@zmerlynn
Copy link
Member Author

Here's one set.

@euank
Copy link
Contributor

euank commented May 25, 2016

Another set of logs: https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/25902/kubernetes-pull-build-test-e2e-gce/41986/ from #25902

ERROR: (gcloud.compute.networks.create) Some requests did not succeed:
 - Quota 'NETWORKS' exceeded. Limit: 75.0

@nikhiljindal
Copy link
Contributor

cc @kubernetes/test-infra-maintainers

@lavalamp
Copy link
Member

@ixdy @fejta @spxtr Too many simultaneous runs in one project?

@alex-mohr
Copy link
Contributor

I chatted with @rmmh who offered to make sure someone on @kubernetes/test-infra-maintainers works on it.

@alex-mohr
Copy link
Contributor

I wonder if this is a symptom of #26199 fixed by #26208 ? Presumably have to clean up too even if PR fixes future leaks.

@ixdy
Copy link
Member

ixdy commented May 25, 2016

The issue is that we create networks and routes based on the Jenkins agent name, but these never get cleaned up by the cluster scripts. @fejta recently renamed all of the Jenkins agents, which resulted in us creating a bunch of new networks and not deleting the old deprecated names.

I'll clean up the old ones now.

@ixdy
Copy link
Member

ixdy commented May 25, 2016

gcloud compute firewall-rules list --project=kubernetes-jenkins-pull --format='value(name)' | grep builder-'[12345]' | xargs gcloud compute firewall-rules delete --project=kubernetes-jenkins-pull
gcloud compute networks list --project=kubernetes-jenkins-pull --format='value(name)' | grep builder-'[12345]'  | xargs gcloud compute networks delete --project=kubernetes-jenkins-pull

Back under quota limits.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/test-infra priority/critical-urgent Highest priority. Must be actively worked on as someone's top priority right now.
Projects
None yet
Development

No branches or pull requests