mirror of https://github.com/k3s-io/k3s
Merge pull request #51936 from CaoShuFeng/audit_doc_string
Automatic merge from submit-queue (batch tested with PRs 51833, 51936) fix docstring of advanced audit policy I found this when I write doc for advanced audit beta version. **Release note**: ``` NONE ```pull/6/head
commit
3a5622db73
|
@ -220,9 +220,9 @@ type GroupResources struct {
|
|||
// +optional
|
||||
Group string
|
||||
// Resources is a list of resources within the API group. Subresources are
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/logs"
|
||||
// would match request to the logs subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/logs".
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/log"
|
||||
// would match request to the log subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/log".
|
||||
// +optional
|
||||
Resources []string
|
||||
// ResourceNames is a list of resource instance names that the policy matches.
|
||||
|
|
|
@ -108,9 +108,9 @@ message GroupResources {
|
|||
optional string group = 1;
|
||||
|
||||
// Resources is a list of resources within the API group. Subresources are
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/logs"
|
||||
// would match request to the logs subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/logs".
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/log"
|
||||
// would match request to the log subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/log".
|
||||
// +optional
|
||||
repeated string resources = 2;
|
||||
|
||||
|
|
|
@ -214,9 +214,9 @@ type GroupResources struct {
|
|||
// +optional
|
||||
Group string `json:"group,omitempty" protobuf:"bytes,1,opt,name=group"`
|
||||
// Resources is a list of resources within the API group. Subresources are
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/logs"
|
||||
// would match request to the logs subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/logs".
|
||||
// matched using a "/" to indicate the subresource. For example, "pods/log"
|
||||
// would match request to the log subresource of pods. The top level resource
|
||||
// does not match subresources, "pods" doesn't match "pods/log".
|
||||
// +optional
|
||||
Resources []string `json:"resources,omitempty" protobuf:"bytes,2,rep,name=resources"`
|
||||
// ResourceNames is a list of resource instance names that the policy matches.
|
||||
|
|
Loading…
Reference in New Issue