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

fix: missing one-of constraint of top-level when conditions #432

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions install/crd/patches/oneof_in_authconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@
selector: {}
value: {}
required: [operator, selector]
- properties:
all: {}
required: [all]
- properties:
any: {}
required: [any]

- op: add
path: /spec/versions/0/schema/openAPIV3Schema/properties/spec/properties/identity/items/properties/when/items/oneOf
Expand Down
8 changes: 8 additions & 0 deletions install/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2474,6 +2474,14 @@ spec:
required:
- operator
- selector
- properties:
all: {}
required:
- all
- properties:
any: {}
required:
- any
properties:
all:
description: A list of pattern expressions to be evaluated as
Expand Down
Loading