run hack/update-all.sh
Kubernetes-commit: 08c024f3670288648751b9444c7db6a63fb0cd04
This commit is contained in:
parent
5dc3326df1
commit
17f624c321
|
|
@ -122,10 +122,19 @@ message GroupResources {
|
||||||
// +optional
|
// +optional
|
||||||
optional string group = 1;
|
optional string group = 1;
|
||||||
|
|
||||||
// Resources is a list of resources within the API group. Subresources are
|
// Resources is a list of resources this rule applies to.
|
||||||
// matched using a "/" to indicate the subresource. For example, "pods/logs"
|
//
|
||||||
// would match request to the logs subresource of pods. The top level resource
|
// For example:
|
||||||
// does not match subresources, "pods" doesn't match "pods/logs".
|
// 'pods' matches pods.
|
||||||
|
// 'pods/log' matches the log subresource of pods.
|
||||||
|
// '*' matches all resources and their subresources.
|
||||||
|
// 'pods/*' matches all subresources of pods.
|
||||||
|
// '*/scale' matches all scale subresources.
|
||||||
|
//
|
||||||
|
// If wildcard is present, the validation rule will ensure resources do not
|
||||||
|
// overlap with each other.
|
||||||
|
//
|
||||||
|
// An empty list implies all resources and subresources in this API groups apply.
|
||||||
// +optional
|
// +optional
|
||||||
repeated string resources = 2;
|
repeated string resources = 2;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -126,10 +126,19 @@ message GroupResources {
|
||||||
// +optional
|
// +optional
|
||||||
optional string group = 1;
|
optional string group = 1;
|
||||||
|
|
||||||
// Resources is a list of resources within the API group. Subresources are
|
// Resources is a list of resources this rule applies to.
|
||||||
// matched using a "/" to indicate the subresource. For example, "pods/log"
|
//
|
||||||
// would match request to the log subresource of pods. The top level resource
|
// For example:
|
||||||
// does not match subresources, "pods" doesn't match "pods/log".
|
// 'pods' matches pods.
|
||||||
|
// 'pods/log' matches the log subresource of pods.
|
||||||
|
// '*' matches all resources and their subresources.
|
||||||
|
// 'pods/*' matches all subresources of pods.
|
||||||
|
// '*/scale' matches all scale subresources.
|
||||||
|
//
|
||||||
|
// If wildcard is present, the validation rule will ensure resources do not
|
||||||
|
// overlap with each other.
|
||||||
|
//
|
||||||
|
// An empty list implies all resources and subresources in this API groups apply.
|
||||||
// +optional
|
// +optional
|
||||||
repeated string resources = 2;
|
repeated string resources = 2;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue