We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when setting an empty labelSelector
extraResources: - kind: EnvironmentConfig into: envConfs apiVersion: apiextensions.crossplane.io/v1alpha1 type: Selector selector: maxMatch: 2 minMatch: 1 matchLabels: []
does not propagete an empty labelSelector to crossplane. instead omitting it altogether.
empty LabelSelectors imply they should match everything. from api docs:
A selector to restrict the list of returned objects by their labels. Defaults to everything.
replace
matchLabels: - key: type type: Value value: cluster
with
matchLabels: []
in example/composition.yaml
example/composition.yaml
Function version: v0.0.3 Crossplane 1.16.0
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What happened?
when setting an empty labelSelector
does not propagete an empty labelSelector to crossplane. instead omitting it altogether.
empty LabelSelectors imply they should match everything.
from api docs:
How can we reproduce it?
replace
with
in
example/composition.yaml
What environment did it happen in?
Function version: v0.0.3
Crossplane 1.16.0
The text was updated successfully, but these errors were encountered: