Skip to content

CORENET-6813: Add config override for allow-icmp-network-policy#2920

Merged
openshift-merge-bot[bot] merged 1 commit intoopenshift:masterfrom
arkadeepsen:allow-icmp-netpol
Mar 26, 2026
Merged

CORENET-6813: Add config override for allow-icmp-network-policy#2920
openshift-merge-bot[bot] merged 1 commit intoopenshift:masterfrom
arkadeepsen:allow-icmp-netpol

Conversation

@arkadeepsen
Copy link
Copy Markdown
Member

@arkadeepsen arkadeepsen commented Mar 5, 2026

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Mar 5, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 5, 2026

@arkadeepsen: This pull request references CORENET-6854 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 "4.22.0" version, but no target version was set.

Details

In response to this:

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

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.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 5, 2026

Important

Review skipped

Auto reviews are limited based on label configuration.

🚫 Review skipped — only excluded labels are configured. (1)
  • do-not-merge/work-in-progress

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: c88d6a55-0bf0-4011-9007-78fed60143bb

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Adds an allow-icmp-network-policy render path: template flag variable and injection, reading/trimming/boolean validation from config overrides in renderOVNKubernetes, and unit tests covering configured, absent, and invalid override cases.

Changes

Cohort / File(s) Summary
Script template
bindata/network/ovn-kubernetes/common/008-script-lib.yaml
Adds allow_icmp_network_policy_flag variable (initialized empty), conditionally sets it when AllowICMPNetworkPolicy is non-empty, and injects ${allow_icmp_network_policy_flag} into the final /usr/bin/ovnkube invocation.
OVN Kubernetes rendering
pkg/network/ovn_kubernetes.go
Reads allow-icmp-network-policy from bootstrapResult.OVN.OVNKubernetesConfig.ConfigOverrides, trims and validates it as boolean (strconv.ParseBool), sets data.Data["AllowICMPNetworkPolicy"] accordingly, and logs a warning on parse failure.
Tests
pkg/network/ovn_kubernetes_test.go
Adds TestRenderOVNKubernetes_AllowICMPNetworkPolicyOverride with a helper and three subtests verifying rendered script: valid "true" emits the flag, absent override results in the empty-flag assignment guarded by the empty-check, and invalid value falls back to the empty assignment.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 25.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Test Structure And Quality ❓ Inconclusive Test uses standard Go testing with Gomega assertions, not Ginkgo BDD framework specified in check instructions. Clarify whether check applies to standard Go tests or only Ginkgo tests, and review codebase conventions for assertion message expectations.
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title clearly and specifically describes the main change: adding a config override for the allow-icmp-network-policy flag, which aligns with the summary of changes across all three modified files.
Stable And Deterministic Test Names ✅ Passed All test names in TestRenderOVNKubernetes_AllowICMPNetworkPolicyOverride are stable, deterministic, and descriptive without dynamic content.

✏️ 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 and usage tips.

@openshift-ci openshift-ci bot requested review from danwinship and kyrtapz March 5, 2026 15:03
@arkadeepsen
Copy link
Copy Markdown
Member Author

Upstream PR which implemented the feature: ovn-kubernetes/ovn-kubernetes#5247
Downstream merge PR containing the commits from the PR: openshift/ovn-kubernetes#3011

/hold
until the downstream PR merges

@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 Mar 5, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 5, 2026

@arkadeepsen: This pull request references CORENET-6854 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 "4.22.0" version, but no target version was set.

Details

In response to this:

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

Summary by CodeRabbit

  • New Features

  • Added support for ICMP network policy configuration in OVN-Kubernetes deployments. The new allow-icmp-network-policy option enables flexible control over ICMP traffic handling within cluster network policies.

  • Tests

  • Added comprehensive test coverage for the ICMP network policy configuration override, including validation of valid boolean values and invalid input handling.

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.

@arkadeepsen arkadeepsen changed the title CORENET-6854: Add config override for allow-icmp-network-policy CORENET-6813: Add config override for allow-icmp-network-policy Mar 5, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 5, 2026

@arkadeepsen: This pull request references CORENET-6813 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 "4.22.0" version, but no target version was set.

Details

In response to this:

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

Summary by CodeRabbit

  • New Features

  • Added support for ICMP network policy configuration in OVN-Kubernetes deployments. The new allow-icmp-network-policy option enables flexible control over ICMP traffic handling within cluster network policies.

  • Tests

  • Added comprehensive test coverage for the ICMP network policy configuration override, including validation of valid boolean values and invalid input handling.

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.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
pkg/network/ovn_kubernetes_test.go (1)

4338-4357: Harden these assertions to avoid whitespace-sensitive failures and add explicit false coverage.

At Line 4338 and Line 4354, multiline block matching is fragile to harmless template formatting changes. Prefer targeted token assertions (e.g., flag/value substrings) and add a false override case to complete boolean-path coverage.

✅ Suggested test refinement
 	t.Run("with allow-icmp-network-policy override", func(t *testing.T) {
 		ovnkubeScriptLib := renderWithOverrides(map[string]string{"allow-icmp-network-policy": "true"})
-		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`
-  if [[ "true" != "" ]]; then
-    allow_icmp_network_policy_flag="--allow-icmp-network-policy=true"
-  fi`))
+		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`allow_icmp_network_policy_flag="--allow-icmp-network-policy=true"`))
 	})

+	t.Run("with allow-icmp-network-policy=false override", func(t *testing.T) {
+		ovnkubeScriptLib := renderWithOverrides(map[string]string{"allow-icmp-network-policy": "false"})
+		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`allow_icmp_network_policy_flag="--allow-icmp-network-policy=false"`))
+	})
+
 	t.Run("without allow-icmp-network-policy override", func(t *testing.T) {
 		ovnkubeScriptLib := renderWithOverrides(nil)
-		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`
-  if [[ "" != "" ]]; then
-    allow_icmp_network_policy_flag="--allow-icmp-network-policy="
-  fi`))
+		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`if [[ "" != "" ]]; then`))
 	})

 	t.Run("with invalid allow-icmp-network-policy override", func(t *testing.T) {
 		ovnkubeScriptLib := renderWithOverrides(map[string]string{"allow-icmp-network-policy": "-60"})
-		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`
-  if [[ "" != "" ]]; then
-    allow_icmp_network_policy_flag="--allow-icmp-network-policy="
-  fi`))
+		g.Expect(ovnkubeScriptLib).To(ContainSubstring(`if [[ "" != "" ]]; then`))
 	})
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pkg/network/ovn_kubernetes_test.go` around lines 4338 - 4357, The tests in
ovn_kubernetes_test.go use fragile multiline substring matches for the
allow-icmp-network-policy flag; update the three cases that call
renderWithOverrides to assert targeted tokens instead (e.g., check for the
presence of "--allow-icmp-network-policy=true" when override is "true", check
for "--allow-icmp-network-policy=" for empty/invalid overrides) and add an
explicit test case using
renderWithOverrides(map[string]string{"allow-icmp-network-policy":"false"}) that
asserts the flag "--allow-icmp-network-policy=false" appears; locate assertions
around the renderWithOverrides calls in the t.Run blocks for "with
allow-icmp-network-policy override", "without allow-icmp-network-policy
override", and "with invalid allow-icmp-network-policy override" and replace
multiline ContainSubstring checks with focused token checks to avoid whitespace
sensitivity and to cover the false path.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@pkg/network/ovn_kubernetes_test.go`:
- Around line 4338-4357: The tests in ovn_kubernetes_test.go use fragile
multiline substring matches for the allow-icmp-network-policy flag; update the
three cases that call renderWithOverrides to assert targeted tokens instead
(e.g., check for the presence of "--allow-icmp-network-policy=true" when
override is "true", check for "--allow-icmp-network-policy=" for empty/invalid
overrides) and add an explicit test case using
renderWithOverrides(map[string]string{"allow-icmp-network-policy":"false"}) that
asserts the flag "--allow-icmp-network-policy=false" appears; locate assertions
around the renderWithOverrides calls in the t.Run blocks for "with
allow-icmp-network-policy override", "without allow-icmp-network-policy
override", and "with invalid allow-icmp-network-policy override" and replace
multiline ContainSubstring checks with focused token checks to avoid whitespace
sensitivity and to cover the false path.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Pro

Run ID: cee2851d-7ad3-4882-8da7-f44c1e3ea1d1

📥 Commits

Reviewing files that changed from the base of the PR and between 0341016 and aac499f.

📒 Files selected for processing (3)
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • pkg/network/ovn_kubernetes.go
  • pkg/network/ovn_kubernetes_test.go

@danwinship
Copy link
Copy Markdown
Contributor

we really need to refactor that code...
/lgtm

@openshift-ci openshift-ci bot added lgtm Indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Mar 5, 2026
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Mar 5, 2026
@arkadeepsen
Copy link
Copy Markdown
Member Author

we really need to refactor that code...

Tried to refactor the code. PLMK whether this needs any other changes or not.

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 5, 2026

@arkadeepsen: This pull request references CORENET-6813 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 "4.22.0" version, but no target version was set.

Details

In response to this:

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

Summary by CodeRabbit

  • New Features

  • Added support for ICMP network policy configuration (allow-icmp-network-policy) in OVN-Kubernetes deployments.

  • Refactor

  • Centralized and standardized parsing/validation of OVN-Kubernetes config overrides to improve robustness and consistency.

  • Tests

  • Expanded and consolidated tests for config overrides to cover multiple keys, valid/invalid inputs, and flag generation.

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.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@pkg/network/ovn_kubernetes_test.go`:
- Around line 4270-4276: The test case entry for the config override
"allow-icmp-network-policy" currently has checkInvalid set to false so the
bool-validation path isn’t exercised; update that table entry in
pkg/network/ovn_kubernetes_test.go so checkInvalid is true and provide an
invalidValue (e.g., "not-a-bool" or "invalid") for the allow-icmp-network-policy
override to trigger the rejection path in the render/validation logic (look for
the test table row containing configOverrideKey: "allow-icmp-network-policy" and
adjust checkInvalid and invalidValue accordingly).

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Pro

Run ID: f70ef0c9-0744-4741-8f21-3c127d804816

📥 Commits

Reviewing files that changed from the base of the PR and between aac499f and fb4e1f4.

📒 Files selected for processing (3)
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • pkg/network/ovn_kubernetes.go
  • pkg/network/ovn_kubernetes_test.go
🚧 Files skipped from review as they are similar to previous changes (1)
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 5, 2026

@arkadeepsen: This pull request references CORENET-6813 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 "4.22.0" version, but no target version was set.

Details

In response to this:

This PR adds config override for allow-icmp-network-policy. The allow-icmp-network-policy flag can be set to true when starting ovnkube-controller to allow ICMP/ICMPv6 traffic when using network policy.

Summary by CodeRabbit

  • New Features

  • Added support for ICMP network policy configuration (allow-icmp-network-policy) in OVN-Kubernetes invocations.

  • Refactor

  • Centralized and standardized parsing/validation of OVN-Kubernetes config overrides for improved robustness and consistency.

  • Tests

  • Consolidated tests into a data-driven suite covering multiple override keys, valid/invalid inputs, and resulting flag generation.

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.

@danwinship
Copy link
Copy Markdown
Contributor

Oh, I didn't mean we should refactor it as part of a blocking PR. We can do it later.O

(We should probably unparse the YAML into a config struct rather than parsing each piece by hand...)

@arkadeepsen
Copy link
Copy Markdown
Member Author

Oh, I didn't mean we should refactor it as part of a blocking PR. We can do it later.O

Ack. Reverted to the previous commit.

(We should probably unparse the YAML into a config struct rather than parsing each piece by hand...)

I'll probably create another PR to take care of the refactor.

@danwinship
Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Mar 6, 2026
@arkadeepsen
Copy link
Copy Markdown
Member Author

/retest-required

1 similar comment
@arkadeepsen
Copy link
Copy Markdown
Member Author

/retest-required

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 11, 2026
@openshift-ci-robot openshift-ci-robot removed the verified Signifies that the PR passed pre-merge verification criteria label Mar 25, 2026
@danwinship
Copy link
Copy Markdown
Contributor

/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp
/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 25, 2026

@danwinship: Overrode contexts on behalf of danwinship: ci/prow/e2e-metal-ipi-ovn-dualstack-bgp, ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

Details

In response to this:

/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp
/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

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.

@danwinship
Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Mar 25, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 25, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: arkadeepsen, danwinship

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

@arkadeepsen
Copy link
Copy Markdown
Member Author

/verified by QE

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Mar 25, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@arkadeepsen: This PR has been marked as verified by QE.

Details

In response to this:

/verified by QE

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.

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-gcp-ovn

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-gcp-ovn-upgrade

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-aws-ovn-upgrade

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-gcp-ovn-upgrade

@arkadeepsen
Copy link
Copy Markdown
Member Author

/skip

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-gcp-ovn

@danwinship
Copy link
Copy Markdown
Contributor

/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp
/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 25, 2026

@danwinship: Overrode contexts on behalf of danwinship: ci/prow/e2e-metal-ipi-ovn-dualstack-bgp, ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

Details

In response to this:

/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp
/override ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw

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.

@arkadeepsen
Copy link
Copy Markdown
Member Author

/skip

@arkadeepsen
Copy link
Copy Markdown
Member Author

/tide refresh

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-gcp-ovn

@arkadeepsen
Copy link
Copy Markdown
Member Author

/tide refresh

@arkadeepsen
Copy link
Copy Markdown
Member Author

/skip

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test e2e-hypershift-aks

@arkadeepsen
Copy link
Copy Markdown
Member Author

/test hypershift-e2e-aks

@arkadeepsen
Copy link
Copy Markdown
Member Author

/skip

@arkadeepsen
Copy link
Copy Markdown
Member Author

/tide refresh

1 similar comment
@arkadeepsen
Copy link
Copy Markdown
Member Author

/tide refresh

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 26, 2026

@arkadeepsen: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/security 297328f link false /test security
ci/prow/e2e-aws-ovn-rhcos10-techpreview 297328f link false /test e2e-aws-ovn-rhcos10-techpreview
ci/prow/4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-upgrade 297328f link false /test 4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-upgrade
ci/prow/4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade 297328f link false /test 4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade

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.

@openshift-merge-bot openshift-merge-bot bot merged commit 4b9f06d into openshift:master Mar 26, 2026
30 checks passed
@arkadeepsen arkadeepsen deleted the allow-icmp-netpol branch March 26, 2026 06:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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.

7 participants