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
To select NSE client uses network service name and labels. Now there is only one selector for labels:
request: { Labels: map[string]string{ "value": "10", } } nse: { Labels: map[string]string{ "value": "10", } }
A proposal is to add extra selectors:
request: { Labels: map[string]string{ "node": "one-of:a,b,c", } } nse: { Labels: map[string]string{ "node": "a", } }
request: { Labels: map[string]string{ "typesSupported": "contains:b,c", } } nse: { Labels: map[string]string{ "typesSupported": "a,b,c,d", } }
request: { Labels: map[string]string{ "latency": "lower-than:100", } } nse: { Labels: map[string]string{ "latency": "40", } }
request: { Labels: map[string]string{ "capability": "greater-than:100", } } nse: { Labels: map[string]string{ "capability": "500", } }
The text was updated successfully, but these errors were encountered:
Sounds a little bit like networkservicemesh/api#51
Sorry, something went wrong.
Do we have a current use case you have in mind for this?
Guess it is really a duplicate, closing :)
No branches or pull requests
To select NSE client uses network service name and labels. Now there is only one selector for labels:
A proposal is to add extra selectors:
The text was updated successfully, but these errors were encountered: