Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for auditID (0.4 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"key":             "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/authorization_test.go

    			}
    			if !reflect.DeepEqual(tc.wantDeny, result.Deny) {
    				t.Errorf("wantDeny:%v\n but got: %v\n", tc.wantDeny, result.Deny)
    			}
    			if !reflect.DeepEqual(tc.wantAudit, result.Audit) {
    				t.Errorf("wantAudit:%v\n but got: %v\n", tc.wantAudit, result.Audit)
    			}
    			if !reflect.DeepEqual(tc.wantCustom, result.Custom) {
    				t.Errorf("wantCustom:%v\n but got: %v\n", tc.wantCustom, result.Custom)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"key":             "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/component-base/tracing"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// ValidatingAuditAnnotationPrefix is a prefix for keeping noteworthy
    	// validating audit annotations.
    	ValidatingAuditAnnotationPrefix = "validating.webhook.admission.k8s.io/"
    	// ValidatingAuditAnnotationFailedOpenKeyPrefix in an annotation indicates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. cmd/config-current.go

    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditWebhookSubSys,
    			Description:     "send audit logs to webhook endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditKafkaSubSys,
    			Description:     "send audit logs to kafka endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyWebhookSubSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/model/model_test.go

    			},
    			notWant: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    			},
    		},
    		{
    			name:   "audit-http",
    			action: rbacpb.RBAC_LOG,
    			rule:   rule,
    			want: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	preparedKey, err := s.prepareKey(key)
    	if err != nil {
    		return err
    	}
    	ctx, span := tracing.Start(ctx, "Create etcd3",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.String("key", key),
    		attribute.String("type", getTypeName(obj)),
    		attribute.String("resource", s.groupResourceString),
    	)
    	defer span.End(500 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. docs/metrics/v3.md

    |                 |                                                  |
    
    ### Audit metrics
    
    These are metrics about the minio audit functionality
    
    | Path     | Description                            |
    |----------|----------------------------------------|
    | `/audit` | Metrics related to audit functionality |
    
    ### ILM metrics
    
    These are metrics about the minio ILM functionality
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/options/options.go

    type Options struct {
    	GenericServerRunOptions *genericoptions.ServerRunOptions
    	Etcd                    *genericoptions.EtcdOptions
    	SecureServing           *genericoptions.SecureServingOptionsWithLoopback
    	Audit                   *genericoptions.AuditOptions
    	Features                *genericoptions.FeatureOptions
    	Admission               *kubeoptions.AdmissionOptions
    	Authentication          *kubeoptions.BuiltInAuthenticationOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    						}, options, envType)
    						if result.Error != nil {
    							t.Errorf("Unexpected error: %v", result.Error)
    						}
    					})
    					t.Run("auditAnnotation.valueExpression", func(t *testing.T) {
    						// Test audit annotation compilation by casting the result to a string
    						options := OptionalVariableDeclarations{HasParams: tc.hasParams, HasAuthorizer: tc.hasAuthorizer}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top