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

Matchconditions admission webhooks alpha implementation for kep-3716 #116261

Merged
merged 12 commits into from
Mar 15, 2023

Conversation

ivelichkovich
Copy link
Contributor

@ivelichkovich ivelichkovich commented Mar 3, 2023

What type of PR is this?

/kind feature
/kind api-change

What this PR does / why we need it:

Adds MatchConditions field to ValidatingWebhookConfiguration and MutatingWebhookConfiguration which contains CEL expressions for matching on the webhooks.

Which issue(s) this PR fixes:

kubernetes/enhancements#3716

Fixes #

Special notes for your reviewer:

Does this PR introduce a user-facing change?

Added the `MatchConditions` field to `ValidatingWebhookConfiguration` and `MutatingWebhookConfiguration` for the v1beta and v1 apis. 

The `AdmissionWebhookMatchConditions` featuregate is now in Alpha

Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:

[<link>](https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/3716-admission-webhook-match-conditions)

@k8s-ci-robot
Copy link
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

@k8s-ci-robot k8s-ci-robot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. kind/feature Categorizes issue or PR as related to a new feature. kind/api-change Categorizes issue or PR as related to adding, removing, or otherwise changing an API do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. labels Mar 3, 2023
@k8s-ci-robot k8s-ci-robot added area/apiserver area/code-generation sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. release-note Denotes a PR that will be considered when it comes time to generate release notes. and removed do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. labels Mar 3, 2023
Copy link
Member

@tallclair tallclair left a comment

Choose a reason for hiding this comment

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

API review comments. Will follow up with code review.

pkg/apis/admissionregistration/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
staging/src/k8s.io/api/admissionregistration/v1/types.go Outdated Show resolved Hide resolved
pkg/apis/admissionregistration/types.go Outdated Show resolved Hide resolved
Copy link
Member

@tallclair tallclair left a comment

Choose a reason for hiding this comment

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

I'd recommend pulling the migrate versionedattr to avoid circular dependency commit into a separate PR. Should be a trivial refactor, and helps focus this PR.

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 3, 2023
pkg/apis/admissionregistration/validation/validation.go Outdated Show resolved Hide resolved
pkg/apis/admissionregistration/validation/validation.go Outdated Show resolved Hide resolved
pkg/apis/admissionregistration/validation/validation.go Outdated Show resolved Hide resolved
pkg/apis/admissionregistration/validation/validation.go Outdated Show resolved Hide resolved
pkg/apis/admissionregistration/validation/validation.go Outdated Show resolved Hide resolved

evalResults, err := v.filter.ForInput(versionedAttr, nil, cel.CreateAdmissionRequest(versionedAttr.Attributes))
if err != nil {
// on error ignore the match condition, don't apply matching
Copy link
Member

Choose a reason for hiding this comment

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

I wonder if we should consider emitting a (rate limited) event on the webhook object?

If so, you can leave it as a TODO for now.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sure, added a todo about an error event

Copy link
Contributor

Choose a reason for hiding this comment

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

Should that code eventually live here (which is shared with embedded admission) or in webhook.go?

Copy link
Contributor

@jpbetz jpbetz Mar 9, 2023

Choose a reason for hiding this comment

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

fail open vs. fail closed on error here ins interesting.

Fail closed could be one of:

  • sending the request to the webhook for admission? If the webhook is not designed to handle request that the matchCondition was suppose to filter out, then that could cause problems.
  • denying admission? For webhooks with FailurePolicy: Ignore this might be suprising.

Fail open would mean skipping the webhook? For webhooks that are suppose to enforce something critical, and have FailurePolicy: Fail, this might be surprising?

Should FailurePolicy be extended control how errors are handled here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So what's interesting is that the failPolicy here is different than the failPolicy for ValidatingAdmissionPolicy in a way. For VAP the validation is the CEL evaluations so failurePolicy handling errors there makes sense. When I think of failurePolicy for VWH it's a failure calling the webhook. This is an error deciding if it should even call the webhook so imo it's a little different, that's why initially we just went with ignoring the errors. I'm open to doing it either way though

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So it wouldn't fail open in the sense that things would avoid the webhook, what will happen here is that additional things would be included and sent to the webhook as the matchConditions can only be used to reduce the scope of a webhook.

If we go the other way for example (or made it configurable), a bad evaluation of a rule would basically make the webhook useless as it wouldn't target anything at all because we're doing an AND of the matchConditions.

Copy link
Member

Choose a reason for hiding this comment

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

With type checking, I'm assuming that errors here should be rare. I'm guessing the most likely cause of an error would be using secondary authz, and a failure calling an authorization webhook? In that case, I'm guessing that would be used for skipping the webhook if a user had a certain privilege. In that case, the safe thing would be to call the webhook anyway.

For the case of the webhook being called on a resource it doesn't support - that should really be handled by the rules, not the MatchConditions. In fact, we may want to add a comment that rules & namespace selector should be used over MatchConditions when possible.

Copy link
Contributor

Choose a reason for hiding this comment

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

Will type checking always be effective? Thinking of CRDs and uses of embedded resources here.

There is also the possibility of non-schema errors, like divide-by-zero.

In my mind, the CEL code here is essentially an extension of the webhook code itself and using FailurePolicy makes sense:

If failure policy is Fail, then I read that as the user saying "if I'm not sure what the webhook's response to this would have been, we should be pessimistic", Ignore would have the opposite interpretation.

One benefit of the current "on failure, call the webhook anyway" approach is that on the off chance the webhook should have been called, the system will behave appropriately, maybe allowing resources that should be allowed that would otherwise be rejected.

One downside is that for "ignore on failure" webhooks, you may get over-enforcement: the exclude logic that someone wrote is no longer properly excluding things.

The comparison seems like a wash to me, so I'd go with whatever would be least surprising to a user. IMO that would be to use failure policy, but I could certainly see using docs or similar to set a different expectation.

TL;DR either works, but I have a slight preference for @jpbetz 's approach.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So one thing though is if the user wants the webhook to be pessimistic and block things when its unsure, using the same failurePolicy for matchConditions would have the opposite effect. For example, if the failPolicy causes the match condition to evaluate to false, then the match condition will not match and the webhook will not get called and the request will be allowed in.

Copy link
Contributor

Choose a reason for hiding this comment

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

Failure policy == fail doesn't mean match condition error => no match, it would mean match condition error => reject the request

Comment on lines 52 to 85
klog.Error("Invalid type conversion to MatchCondition")
continue
Copy link
Member

Choose a reason for hiding this comment

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

I wonder if this should return an error instead? It should never happen...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah we can do that. How should we handle errors returned from matcher in generic/webhook.go? Log the at high verbosity?

@ivelichkovich
Copy link
Contributor Author

Moved versionattr package migration for circular dependency to this PR #116264

@k8s-ci-robot
Copy link
Contributor

@rjsadow: /release-note-edit must be used with a release note block.

In response to this:

/release-note-edit

release-note Added the `MatchConditions` field to `ValidatingWebhookConfiguration` and `MutatingWebhookConfiguration` for the v1beta and v1 apis. 

The `AdmissionWebhookMatchConditions` featuregate is now in Alpha 

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/test-infra repository.

@rjsadow
Copy link
Contributor

rjsadow commented Mar 6, 2023

/release-note-edit

Added the `MatchConditions` field to `ValidatingWebhookConfiguration` and `MutatingWebhookConfiguration` for the v1beta and v1 apis. 

The `AdmissionWebhookMatchConditions` featuregate is now in Alpha 

@tallclair tallclair self-assigned this Mar 6, 2023
@tallclair tallclair added the tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. label Mar 14, 2023
Comment on lines +87 to +95
if m.failPolicy == v1.Fail {
return MatchResult{
Error: err,
}
} else if m.failPolicy == v1.Ignore {
return MatchResult{
Matches: false,
}
}
Copy link
Member

@liggitt liggitt Mar 14, 2023

Choose a reason for hiding this comment

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

Make a note to adjust this in a follow-up to add a default case (probably with an internal server error or something) if the failurePolicy is neither of these expected values

That's not possible in the API today, but falling through to range evalResults isn't what we'd want to do.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done!

Copy link
Member

Choose a reason for hiding this comment

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

+1

In the same follow up, I'd extract this to a helper function since the logic is used in 2 places.

@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 14, 2023
@tallclair
Copy link
Member

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 15, 2023
@k8s-ci-robot
Copy link
Contributor

LGTM label has been added.

Git tree hash: 8e8bdc73059105643136720a812defd5dd81c8fc

@k8s-ci-robot k8s-ci-robot removed the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 15, 2023
@tallclair
Copy link
Member

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 15, 2023
@k8s-ci-robot
Copy link
Contributor

LGTM label has been added.

Git tree hash: a45dbfd0b9a3b5f544ef9043b39ee9419211aef8

@k8s-ci-robot k8s-ci-robot merged commit 5e5b302 into kubernetes:master Mar 15, 2023
maxsmythe added a commit to maxsmythe/kubernetes that referenced this pull request Mar 15, 2023
This PR is based off of, and dependent on the following PR:

kubernetes#116261

Signed-off-by: Max Smythe <smythe@google.com>
k8s-ci-robot pushed a commit that referenced this pull request Mar 16, 2023
* Add custom match conditions for CEL admission

This PR is based off of, and dependent on the following PR:

#116261

Signed-off-by: Max Smythe <smythe@google.com>

* run `make update`

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Update compatibility test data

Signed-off-by: Max Smythe <smythe@google.com>

* Revert "Update compatibility test data"

This reverts commit 312ba7f.

* Allow params during validation; make match conditions optional

Signed-off-by: Max Smythe <smythe@google.com>

* Add conditional ignoring of matcher CEL expression validation on update

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Add more validation tests

Signed-off-by: Max Smythe <smythe@google.com>

* Short-circuit CEL matcher when no matchers specified

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Address review comments

Signed-off-by: Max Smythe <smythe@google.com>

---------

Signed-off-by: Max Smythe <smythe@google.com>
k8s-publishing-bot pushed a commit to kubernetes/api that referenced this pull request Mar 16, 2023
* Add custom match conditions for CEL admission

This PR is based off of, and dependent on the following PR:

kubernetes/kubernetes#116261

Signed-off-by: Max Smythe <smythe@google.com>

* run `make update`

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Update compatibility test data

Signed-off-by: Max Smythe <smythe@google.com>

* Revert "Update compatibility test data"

This reverts commit 312ba7f9e74e0ec4a7ac1f07bf575479c608af28.

* Allow params during validation; make match conditions optional

Signed-off-by: Max Smythe <smythe@google.com>

* Add conditional ignoring of matcher CEL expression validation on update

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Add more validation tests

Signed-off-by: Max Smythe <smythe@google.com>

* Short-circuit CEL matcher when no matchers specified

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Address review comments

Signed-off-by: Max Smythe <smythe@google.com>

---------

Signed-off-by: Max Smythe <smythe@google.com>

Kubernetes-commit: e5fd204c33e90a7e8f5a0ee70242f1296a5ec7af
k8s-publishing-bot pushed a commit to kubernetes/client-go that referenced this pull request Mar 16, 2023
* Add custom match conditions for CEL admission

This PR is based off of, and dependent on the following PR:

kubernetes/kubernetes#116261

Signed-off-by: Max Smythe <smythe@google.com>

* run `make update`

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Update compatibility test data

Signed-off-by: Max Smythe <smythe@google.com>

* Revert "Update compatibility test data"

This reverts commit 312ba7f9e74e0ec4a7ac1f07bf575479c608af28.

* Allow params during validation; make match conditions optional

Signed-off-by: Max Smythe <smythe@google.com>

* Add conditional ignoring of matcher CEL expression validation on update

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Add more validation tests

Signed-off-by: Max Smythe <smythe@google.com>

* Short-circuit CEL matcher when no matchers specified

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Address review comments

Signed-off-by: Max Smythe <smythe@google.com>

---------

Signed-off-by: Max Smythe <smythe@google.com>

Kubernetes-commit: e5fd204c33e90a7e8f5a0ee70242f1296a5ec7af
k8s-publishing-bot pushed a commit to kubernetes/apiserver that referenced this pull request Mar 16, 2023
* Add custom match conditions for CEL admission

This PR is based off of, and dependent on the following PR:

kubernetes/kubernetes#116261

Signed-off-by: Max Smythe <smythe@google.com>

* run `make update`

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Update compatibility test data

Signed-off-by: Max Smythe <smythe@google.com>

* Revert "Update compatibility test data"

This reverts commit 312ba7f9e74e0ec4a7ac1f07bf575479c608af28.

* Allow params during validation; make match conditions optional

Signed-off-by: Max Smythe <smythe@google.com>

* Add conditional ignoring of matcher CEL expression validation on update

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Add more validation tests

Signed-off-by: Max Smythe <smythe@google.com>

* Short-circuit CEL matcher when no matchers specified

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Address review comments

Signed-off-by: Max Smythe <smythe@google.com>

---------

Signed-off-by: Max Smythe <smythe@google.com>

Kubernetes-commit: e5fd204c33e90a7e8f5a0ee70242f1296a5ec7af
wongma7 pushed a commit to wongma7/kubernetes that referenced this pull request Jul 24, 2023
Description:
* Allows for the bypassing of admission controller webhook for certain resources.

Upstream PR, Issue, KEP, etc. links:
* See below.

If this patch is based on an upstream commit, how (if at all) do this patch and the upstream source differ?
* N/A

If this patch's changes have not been added by upstream, why not?
* This patch has not been added by upstream, but work is being actively done to add the ability to filter webhooks. See:
    - KEP-3716 -- https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/3716-admission-webhook-match-conditions
    and kubernetes/enhancements#3717
    - Tracking issue -- kubernetes/enhancements#3716
    - Kubernetes PR kubernetes#116261 -- kubernetes#116261

Other patches related to this patch:
* None

Changes made to this patch after its initial creation and reasons for these changes:
* February 2, 2023 -- This patch replaced 0002-EKS-PATCH-Bypassed-admission-controller-webhook-for-.patch
(https://github.com/aws/eks-distro/blob/v1-22-eks-18/projects/kubernetes/kubernetes/1-22/patches/0002-EKS-PATCH-Bypassed-admission-controller-webhook-for-.patch).
The difference between this patch and its predecessor is that this patch allows for users to supply a config file that
defines which webhooks should be excluded. If this files is not provided, this patch and the previous one function the
same.

Kubernetes version this patch can be dropped:
* When the upstream efforts to implement these changes are merged.

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
ivelichkovich added a commit to ivelichkovich/kubernetes that referenced this pull request Sep 13, 2023
Description:
* Allows for the bypassing of admission controller webhook for certain resources.

Upstream PR, Issue, KEP, etc. links:
* See below.

If this patch is based on an upstream commit, how (if at all) do this patch and the upstream source differ?
* N/A

If this patch's changes have not been added by upstream, why not?
* This patch has not been added by upstream, but work is being actively done to add the ability to filter webhooks. See:
    - KEP-3716 -- https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/3716-admission-webhook-match-conditions
    and kubernetes/enhancements#3717
    - Tracking issue -- kubernetes/enhancements#3716
    - Kubernetes PR kubernetes#116261 -- kubernetes#116261

Other patches related to this patch:
* None

Changes made to this patch after its initial creation and reasons for these changes:
* February 2, 2023 -- This patch replaced 0002-EKS-PATCH-Bypassed-admission-controller-webhook-for-.patch
(https://github.com/aws/eks-distro/blob/v1-22-eks-18/projects/kubernetes/kubernetes/1-22/patches/0002-EKS-PATCH-Bypassed-admission-controller-webhook-for-.patch).
The difference between this patch and its predecessor is that this patch allows for users to supply a config file that
defines which webhooks should be excluded. If this files is not provided, this patch and the previous one function the
same.

Kubernetes version this patch can be dropped:
* When the upstream efforts to implement these changes are merged.
* We can replace with new match using match conditions in 1.28+ or when match conditions become GA

Signed-off-by: Jyoti Mahapatra <jyotima@amazon.com>
rayowang pushed a commit to rayowang/kubernetes that referenced this pull request Feb 9, 2024
…ubernetes#116261)

* api changes adding match conditions

* feature gate and registry strategy to drop fields

* matchConditions logic for admission webhooks

* feedback

* update test

* import order

* bears.com

* update fail policy ignore behavior

* update docs and matcher to hold fail policy as non-pointer

* update matcher error aggregation, fix early fail failpolicy ignore, update docs

* final cleanup

* openapi gen
rayowang pushed a commit to rayowang/kubernetes that referenced this pull request Feb 9, 2024
* Add custom match conditions for CEL admission

This PR is based off of, and dependent on the following PR:

kubernetes#116261

Signed-off-by: Max Smythe <smythe@google.com>

* run `make update`

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Fix unit tests

Signed-off-by: Max Smythe <smythe@google.com>

* Update compatibility test data

Signed-off-by: Max Smythe <smythe@google.com>

* Revert "Update compatibility test data"

This reverts commit 312ba7f.

* Allow params during validation; make match conditions optional

Signed-off-by: Max Smythe <smythe@google.com>

* Add conditional ignoring of matcher CEL expression validation on update

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Add more validation tests

Signed-off-by: Max Smythe <smythe@google.com>

* Short-circuit CEL matcher when no matchers specified

Signed-off-by: Max Smythe <smythe@google.com>

* Run codegen

Signed-off-by: Max Smythe <smythe@google.com>

* Address review comments

Signed-off-by: Max Smythe <smythe@google.com>

---------

Signed-off-by: Max Smythe <smythe@google.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api-review Categorizes an issue or PR as actively needing an API review. approved Indicates a PR has been approved by an approver from all required OWNERS files. area/apiserver area/code-generation area/test cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/api-change Categorizes issue or PR as related to adding, removing, or otherwise changing an API kind/feature Categorizes issue or PR as related to a new feature. lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. release-note Denotes a PR that will be considered when it comes time to generate release notes. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/testing Categorizes an issue or PR as relevant to SIG Testing. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. triage/accepted Indicates an issue or PR is ready to be actively worked on.
Projects
Status: API review completed, 1.27
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet