Closed barbacbd closed 1 week ago
@barbacbd: This pull request references Jira Issue OCPBUGS-44193, which is valid.
Requesting review from QA contact: /cc @jianli-wei
The bug has been updated to refer to the pull request using the external bug tracker.
/cc @patrickdillon
/uncc @andfasano
/retest
/label acknowledge-critical-fixes-only
/label platform/google
Fortunately, GCP collects quota data for what we delete, so we can compare the quota for the latest run from this PR with, say, another presubmit
Using jd to compare...
$ jd -set pr-quota.json presubmit-quota.json
@ ["gcp",["set"],{}]
- {"amount":2,"dimensions":{"network_id":"ci-op-46zmsc2l-6a305-8rbkj-network"},"limit":"subnet_ranges_per_vpc_network","service":"compute.googleapis.com"}
- {"amount":1,"dimensions":{"region":"us-central1"},"limit":"internal_addresses","service":"compute.googleapis.com"}
+ {"amount":1,"dimensions":{"region":""},"limit":"addresses","service":"compute.googleapis.com"}
+ {"amount":40,"dimensions":{"region":"us-central1"},"limit":"disks_total_storage","service":"compute.googleapis.com"}
+ {"amount":1,"dimensions":{"region":"us-central1"},"limit":"addresses","service":"compute.googleapis.com"}
+ {"amount":2,"dimensions":{"network_id":"ci-op-23kt0cp6-6a305-sshhv-network"},"limit":"subnet_ranges_per_vpc_network","service":"compute.googleapis.com"}
The first thing that jumps out is it looks like we're leaking disks, so let's
/hold
until we can check that out.
Networks look ok, it's just diffing on the names. Not sure what's going on with addresses. We will need to look more closely.
/approve /hold cancel The disks question is just that they're deleting different kinds of disks
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: patrickdillon
The full list of commands accepted by this bot can be found here.
The pull request process is described here
/retest-required
Remaining retests: 0 against base HEAD 545c830586292bd62196834b0d200f1759f47ee9 and 2 for PR HEAD 338e0c96f95e6be612712e26716a0af5145ba42b in total
@barbacbd: all tests passed!
Full PR test history. Your PR dashboard.
@barbacbd: Jira Issue OCPBUGS-44193: Some pull requests linked via external trackers have merged:
The following pull requests linked via external trackers have not merged:
These pull request must merge or be unlinked from the Jira bug in order for it to move to the next state. Once unlinked, request a bug refresh with /jira refresh
.
Jira Issue OCPBUGS-44193 has not been moved to the MODIFIED state.
The destroy code is using server side filtering on resources. The number of resources that are filtered out (server side) are causing quota limits to be reached. Moving the filtering to the client side will limit quota max errors.