...
Custom scopes can be used to provided limited access to data. A custom scope is defined as followsFor a scope to match all filters should match. Each filter is defined by a key
, an operator (=
, ~=
, =~
, !~
) and value
to match. For example, following custom scope is defining a filter which matches data such that kube_namespace="target"
:
Code Block |
---|
scope: type: custom filters: - key: kube_namespace op: = value: target |
...