Skip to content

SPLAT-2713: Update AWS CCM e2e test module version#476

Merged
openshift-merge-bot[bot] merged 3 commits into
openshift:mainfrom
mfbonfigli:SPLAT-2713_update-cccmo-tests
Jul 15, 2026
Merged

SPLAT-2713: Update AWS CCM e2e test module version#476
openshift-merge-bot[bot] merged 3 commits into
openshift:mainfrom
mfbonfigli:SPLAT-2713_update-cccmo-tests

Conversation

@mfbonfigli

@mfbonfigli mfbonfigli commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

What

Updates the AWS CCM e2e tests module version to the latest version, including refreshing the vendored dependencies for the test binary.

Additionally fixes an unrelated unit test that was causing test failures by wrapping it in an Eventually statement.

Why

The purpose is to pull down the latest test changes which include new e2e tests for the BYO Security Groups feature for AWS Network Load Balancers. The feature has already been merged in upstream and downstream AWS CCM. Updating the test dependency will ensure these e2e tests will run in downstream constantly ensuring the feature works as expected.

Summary by CodeRabbit

Summary

  • Chores
    • Updated AWS cloud provider end-to-end test dependencies to the latest available version.
  • Tests
    • Improved the BareMetal “no ConfigMaps created” check by using retrying verification, ensuring reconciliation settles before confirming none exist.
    • Enhanced AWS region handling in E2E runs: validates region values from environment variables and can fall back to the cluster’s Infrastructure-reported region when needed.

Updates the AWS CCM e2e tests module version to the latest
version which includes changes like the addition of e2e tests
for the BYO Security Group for AWS Network Load Balancer feat.
@openshift-ci

openshift-ci Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@openshift-ci-robot

openshift-ci-robot commented Jun 19, 2026

Copy link
Copy Markdown

@mfbonfigli: This pull request references SPLAT-2713 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set.

Details

In response to this:

What

Updates the AWS CCM e2e tests module version to the latest version, including refreshing the vendored dependencies for the test binary.

Why

The purpose is to pull down the latest test changes which include new e2e tests for the BYO Security Groups feature for AWS Network Load Balancers. The feature has already been merged in upstream and downstream AWS CCM. Updating the test dependency will ensure these e2e tests will run in downstream constantly ensuring the feature works as expected.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Jun 19, 2026
@openshift-ci openshift-ci Bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 19, 2026
@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@mfbonfigli, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 1 minute and 37 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 1cdf63ac-b977-47f9-b646-948234ddcd67

📥 Commits

Reviewing files that changed from the base of the PR and between 412554f and 8dc4ed6.

📒 Files selected for processing (3)
  • openshift-tests/ccm-aws-tests/e2e/aws/helper.go
  • openshift-tests/ccm-aws-tests/e2e/common/helper.go
  • openshift-tests/ccm-aws-tests/main.go

Walkthrough

This PR consolidates AWS region validation and discovery into shared helpers, refactors the AWS test helper and main entrypoint to use those shared helpers with validation and fallback logic, makes a controller test assertion more robust with retry logic, and updates an e2e test dependency.

Changes

AWS Region Discovery and Validation Refactoring

Layer / File(s) Summary
Shared region validation and discovery helpers
openshift-tests/ccm-aws-tests/e2e/common/helper.go
Introduces exported AWSRegionPattern regexp for AWS region name validation across partitions and ISO formats, and adds GetRegionFromInfrastructure(ctx) to retrieve the AWS region from the cluster Infrastructure resource with nil-checks and error wrapping.
AWS test helper region loading refactored
openshift-tests/ccm-aws-tests/e2e/aws/helper.go
Removes local region discovery and validation logic from loadAWSConfig and rewires it to call common.GetRegionFromInfrastructure(ctx) and use common.AWSRegionPattern for validation; removes unused regexp and metav1 imports.
Main entrypoint region discovery with validation and fallback
openshift-tests/ccm-aws-tests/main.go
getRegionFromEnv now validates candidate region environment variables using common.AWSRegionPattern, and falls back to common.GetRegionFromInfrastructure when no valid env value is found, with appropriate logging and error handling.

Test Robustness and Dependency Update

Layer / File(s) Summary
Bare-metal controller test assertion with retry
pkg/controllers/cloud_config_sync_controller_test.go
The "On BareMetal platform" test assertion changes from an immediate length check to an Eventually block that waits for ConfigMaps to reach zero count, allowing reconciliation effects to settle before verification.
Cloud-provider-aws e2e test dependency bump
openshift-tests/ccm-aws-tests/go.mod
The k8s.io/cloud-provider-aws/tests/e2e required version is updated to pseudo-version v0.0.0-20260606003233-c34d66ed717a.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~22 minutes

Possibly related PRs

Suggested labels

lgtm, verified

Suggested reviewers

  • nrb
  • RadekManak
🚥 Pre-merge checks | ✅ 12 | ❌ 3

❌ Failed checks (3 warnings)

Check name Status Explanation Resolution
Test Structure And Quality ⚠️ Warning The modified test (BareMetal platform test, lines 606,611) lacks meaningful assertion failure messages per custom check requirement 4, despite properly implementing timeouts (requirement 3). Add assertion messages to the modified test: Line 606 should add message like "reconciliation should not error", and line 611 should add "no ConfigMaps should be created for BareMetal platform".
Microshift Test Compatibility ⚠️ Warning New e2e tests in loadbalancer.go use config.openshift.io/v1 APIs (FeatureGate, Infrastructure) unavailable on MicroShift. Tests lack [apigroup:config.openshift.io] tag or [Skipped:MicroShift] label... Add [apigroup:config.openshift.io] tag to each It() test name or wrap tests in MicroShift platform check using exutil.IsMicroShiftCluster()
Ipv6 And Disconnected Network Test Compatibility ⚠️ Warning The PR adds new AWS CCM e2e tests (BYO Security Groups for NLB) with IPv4 assumptions: the inClusterTestReachableHTTP function constructs URLs using fmt.Sprintf("http://%s:%d/...", target, port) wh... IPv6 and disconnected network compatibility notice: This test may contain IPv4 assumptions or external connectivity requirements that will fail in IPv6-only disconnected environments. Please verify your test works on IPv6 by running...
✅ Passed checks (12 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: updating the AWS CCM e2e test module version, which is reflected by the go.mod dependency update and subsequent code refactoring.
Docstring Coverage ✅ Passed Docstring coverage is 80.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed All test names in the PR are stable and deterministic. The new e2e test suite uses static constants in fmt.Sprintf for the Describe block, and all It() test titles are static strings with no dynami...
Single Node Openshift (Sno) Test Compatibility ✅ Passed New e2e tests added don't explicitly require multi-node assumptions: no node counting, anti-affinity, cross-node scheduling, or node failover logic. Pods can run on SNO's single node. Tests lack SN...
Topology-Aware Scheduling Compatibility ✅ Passed PR contains only test code/dependencies changes; no deployment manifests, operator code, pod affinity rules, or topology-aware scheduling constraints are introduced.
Ote Binary Stdout Contract ✅ Passed New process-level code uses logrus (writes to stderr by default) for all logging. Helper functions appropriately use framework.Logf for test-level logging. No stdout violations found.
No-Weak-Crypto ✅ Passed No weak cryptographic algorithms (MD5, SHA1, DES, RC4, 3DES, Blowfish, ECB), custom crypto implementations, or non-constant-time comparisons detected in the PR code changes.
Container-Privileges ✅ Passed PR contains no container/Kubernetes manifest changes with privileged settings. All 5 modified files are Go source/dependency files without container security context definitions, hostNetwork, hostP...
No-Sensitive-Data-In-Logs ✅ Passed No sensitive data (passwords, tokens, API keys, PII, session IDs, internal hostnames) is logged in any of the modified files. Logging includes only AWS regions, resource IDs, and generic error mess...

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@mfbonfigli
mfbonfigli marked this pull request as ready for review June 19, 2026 09:25
@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 19, 2026
@openshift-ci
openshift-ci Bot requested review from miyadav and racheljpg June 19, 2026 09:26
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

1 similar comment
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
pkg/controllers/cloud_config_sync_controller_test.go (1)

607-611: ⚡ Quick win

Add descriptive failure message to assertion.

The assertion lacks a custom failure message. Adding one would improve debuggability when the test fails by clearly explaining what condition was expected.

📝 Proposed fix to add failure message
 Eventually(func() int {
 	allCMs := &corev1.ConfigMapList{}
 	Expect(cl.List(ctx, allCMs, &client.ListOptions{Namespace: targetNamespaceName})).To(Succeed())
 	return len(allCMs.Items)
-}).Should(BeZero())
+}, 10*time.Second, 100*time.Millisecond).Should(BeZero(), "Expected no ConfigMaps to be created for BareMetal platform")

As per coding guidelines: "Assertions should include meaningful failure messages."

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@pkg/controllers/cloud_config_sync_controller_test.go` around lines 607 - 611,
The Eventually assertion that checks the ConfigMap count is zero lacks a custom
failure message, which makes debugging harder when the test fails. Add a
descriptive failure message to the Eventually().Should(BeZero()) assertion chain
to explain what condition is expected. Use the appropriate Gomega method (such
as WithMessage or similar) to attach a clear error message that will be
displayed if the assertion fails, explaining that all ConfigMaps in the target
namespace should be cleaned up or deleted.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@pkg/controllers/cloud_config_sync_controller_test.go`:
- Around line 607-611: The Eventually block that lists ConfigMaps in the
targetNamespace lacks an explicit timeout parameter, which can cause the test to
hang indefinitely if the reconciler misbehaves. Add a timeout argument to the
Eventually function call (something like Eventually(func(), timeout.Duration))
to ensure the test fails gracefully if ConfigMaps are not cleaned up within a
reasonable timeframe. Include both the timeout and optionally a polling interval
to comply with Ginkgo testing guidelines for cluster-interacting operations.

---

Nitpick comments:
In `@pkg/controllers/cloud_config_sync_controller_test.go`:
- Around line 607-611: The Eventually assertion that checks the ConfigMap count
is zero lacks a custom failure message, which makes debugging harder when the
test fails. Add a descriptive failure message to the
Eventually().Should(BeZero()) assertion chain to explain what condition is
expected. Use the appropriate Gomega method (such as WithMessage or similar) to
attach a clear error message that will be displayed if the assertion fails,
explaining that all ConfigMaps in the target namespace should be cleaned up or
deleted.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 9c0dba32-c5a4-4248-b5a6-ca9e439cf1a3

📥 Commits

Reviewing files that changed from the base of the PR and between 7409854 and 9190933.

📒 Files selected for processing (1)
  • pkg/controllers/cloud_config_sync_controller_test.go

Comment thread pkg/controllers/cloud_config_sync_controller_test.go Outdated
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/test e2e-aws-ovn-upgrade

@mtulio mtulio left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall LGTM. I see two commits with the same purpose: fixing the unit test on pkg/controllers/cloud_config_sync_controller_test.go.

Would you mind squashing those?

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/test ?

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-ccm-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

@mtulio: trigger 0 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

Wrap the ConfigMap list assertion in Eventually with an explicit 2-minute
timeout and 5-second polling interval. The previous synchronous assertion
was racy — the envtest API server cache could still reflect a ConfigMap
from a prior test's reconcile loop.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@mfbonfigli
mfbonfigli force-pushed the SPLAT-2713_update-cccmo-tests branch from 9f8e009 to 971e635 Compare June 22, 2026 14:48
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

Thanks @mtulio , just squashed the two and pushed.

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-4.23-periodics-e2e-aws-ovn-conformance-ccm-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

@mtulio: trigger 0 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

@mtulio: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

  • periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/ef6b3000-6e59-11f1-84f5-8fd4e61631a8-0

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

LGTM Feel free to drop hold label when you verify it on CI job results (including hypershift periodic).
/hold
/lgtm

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jun 22, 2026
@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jun 22, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@mtulio: This PR has been marked as verified by @mfbonfigli on CI jobs.

Details

In response to this:

Hypershift job is reporting missing permissions which is tracked by openshift/hypershift#8401 and https://redhat-internal.slack.com/archives/C0B71V5TDMW/p1782809538934809

/lgtm
/approve
/verified by @mfbonfigli on CI jobs

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jul 9, 2026
@mtulio

mtulio commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

would you mind taking a look? Thanks!
/assign @theobarberbany @damdo
/hold cancel

@openshift-ci openshift-ci Bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 9, 2026
@theobarberbany

Copy link
Copy Markdown
Contributor

/test okd-scos-images

@theobarberbany

Copy link
Copy Markdown
Contributor

/lgtm
/approve

@openshift-ci

openshift-ci Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: mtulio, theobarberbany

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jul 10, 2026
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD a1fd447 and 2 for PR HEAD 8dc4ed6 in total

@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/test unit

@mtulio

mtulio commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

/test e2e-aws-ovn

@mtulio

mtulio commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

Per chai-bot investigation, the test [sig-node] Pod InPlace Resize Container burstable pods - 1 container with all requests & limits set and resize policy mem restart resizing requests & limits in opposite directions is blocking job ci/prow/e2e-aws-ovn , left a analysis in the linked bug OCPBUGS-98221.

/overide ci/prow/e2e-aws-ovn

@mtulio

mtulio commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

/overide ci/prow/e2e-aws-ovn

/override ci/prow/e2e-aws-ovn

@mtulio

mtulio commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

/override ci/prow/e2e-aws-ovn

@openshift-ci

openshift-ci Bot commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

@mtulio: mtulio unauthorized: /override is restricted to Repo administrators, approvers in top level OWNERS file, and the following github teams:openshift: openshift-release-oversight openshift-staff-engineers openshift-sustaining-engineers.

Details

In response to this:

/overide ci/prow/e2e-aws-ovn

/override ci/prow/e2e-aws-ovn

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@openshift-ci

openshift-ci Bot commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

@mtulio: mtulio unauthorized: /override is restricted to Repo administrators, approvers in top level OWNERS file, and the following github teams:openshift: openshift-release-oversight openshift-staff-engineers openshift-sustaining-engineers.

Details

In response to this:

/override ci/prow/e2e-aws-ovn

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@mdbooth

mdbooth commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

/test e2e-aws-ovn

@mtulio

mtulio commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

/test e2e-aws-ovn

this time another test failed :(
: [sig-network-edge][Conformance][Area:Networking][Feature:Router][apigroup:route.openshift.io][apigroup:config.openshift.io] The HAProxy router should pass the http2 tests [apigroup:image.openshift.io][apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel/minimal]

/test e2e-aws-ovn

@openshift-ci

openshift-ci Bot commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

@mfbonfigli: all tests passed!

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@mtulio

mtulio commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

This must be part of the release readiness as the feature is already on o/cloud-provider-aws without tests (issue related to the OTE not living in o/cloud-provider-aws):

/label acknowledge-critical-fixes-only

@openshift-ci openshift-ci Bot added the acknowledge-critical-fixes-only Indicates if the issuer of the label is OK with the policy. label Jul 15, 2026
@openshift-merge-bot
openshift-merge-bot Bot merged commit d9a0c00 into openshift:main Jul 15, 2026
14 checks passed
@mdbooth

mdbooth commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

This must be part of the release readiness as the feature is already on o/cloud-provider-aws without tests (issue related to the OTE not living in o/cloud-provider-aws):

/label acknowledge-critical-fixes-only

It's ultimately up to you, but the current freeze is for CI stability while we land the k8s bump, not release readiness. I would not have added a new test suite with potentially new failure modes during this period.

openshift-merge-bot Bot pushed a commit that referenced this pull request Jul 15, 2026
…mo-tests"

This reverts commit d9a0c00, reversing
changes made to a1fd447.
openshift-merge-bot Bot added a commit that referenced this pull request Jul 15, 2026
Revert #476 "SPLAT-2713: Update AWS CCM e2e test module version"
mfbonfigli added a commit to mfbonfigli/cluster-cloud-controller-manager-operator that referenced this pull request Jul 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

acknowledge-critical-fixes-only Indicates if the issuer of the label is OK with the policy. approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged. verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants