mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-07 03:03:59 +00:00
run hack/update-all.sh
This commit is contained in:
parent
cc135e985c
commit
08c024f367
@ -114,10 +114,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;
|
||||||
|
|
||||||
|
@ -118,10 +118,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
Block a user