Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for auditID (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    		req = req.WithContext(request.WithUser(ctx, newUser))
    
    		oldUser, _ := request.UserFrom(ctx)
    		httplog.LogOf(req, w).Addf("%v is impersonating %v", userString(oldUser), userString(newUser))
    
    		ae := audit.AuditEventFrom(ctx)
    		audit.LogImpersonatedUser(ae, newUser)
    
    		// clear all the impersonation headers from the request
    		req.Header.Del(authenticationv1.ImpersonateUserHeader)
    		req.Header.Del(authenticationv1.ImpersonateGroupHeader)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/trace_util.go

    	"go.opentelemetry.io/otel/attribute"
    )
    
    func traceFields(req *http.Request) []attribute.KeyValue {
    	return []attribute.KeyValue{
    		attribute.Stringer("accept", &lazyAccept{req: req}),
    		attribute.Stringer("audit-id", &lazyAuditID{req: req}),
    		attribute.Stringer("client", &lazyClientIP{req: req}),
    		attribute.Stringer("api-group", &lazyAPIGroup{req: req}),
    		attribute.Stringer("api-version", &lazyAPIVersion{req: req}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. cmd/lceventsrc_string.go

    // Code generated by "stringer -type lcEventSrc -trimprefix lcEventSrc_ bucket-lifecycle-audit.go"; DO NOT EDIT.
    
    package cmd
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[lcEventSrc_None-0]
    	_ = x[lcEventSrc_Heal-1]
    	_ = x[lcEventSrc_Scanner-2]
    	_ = x[lcEventSrc_Decom-3]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 01 15:56:24 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	// '/token' endpoint for service accounts.
    	// This annotation indicates the generated credential identifier for the service account token being issued.
    	// This is useful when tracing back the origin of tokens that have gone on to make request that have persisted
    	// their credential-identifier into the audit log via the user's extra info stored on subsequent audit events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. 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)
  10. api/README

    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top