Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for auditID (0.13 sec)

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

    	Warn ValidationAction = "Warn"
    	// Audit specifies that a validation failure is included in the published
    	// audit event for the request. The audit event will contain a
    	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
    	// with a value containing the details of the validation failure.
    	Audit ValidationAction = "Audit"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K 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/v1/generated.proto

      // both for allowed or denied admission responses.
      //
      // "Audit" specifies that a validation failure is included in the published
      // audit event for the request. The audit event will contain a
      // `validation.policy.admission.k8s.io/validation_failure` audit annotation
      // with a value containing the details of the validation failures, formatted as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/validation_test.go

    				GenericServerRunOptions: &genericoptions.ServerRunOptions{},
    				Etcd:                    &genericoptions.EtcdOptions{},
    				SecureServing:           &genericoptions.SecureServingOptionsWithLoopback{},
    				Audit:                   &genericoptions.AuditOptions{},
    				Admission: &kubeoptions.AdmissionOptions{
    					GenericAdmission: &genericoptions.AdmissionOptions{
    						EnablePlugins: []string{"foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K 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/networking/plugin/authz/authorization.go

    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authz/builder"
    	"istio.io/istio/pilot/pkg/security/trustdomain"
    )
    
    type ActionType int
    
    const (
    	// Local for action ALLOW, DENY and AUDIT and is enforced by Envoy RBAC filter.
    	Local ActionType = iota
    	// Custom action is enforced by Envoy ext_authz filter.
    	Custom
    )
    
    type Builder struct {
    	// Lazy load
    	httpBuilt, tcpBuilt bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K 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