Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for auditID (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    	return v.Expression
    }
    
    func (v *ValidationCondition) ReturnTypes() []*celgo.Type {
    	return []*celgo.Type{celgo.BoolType}
    }
    
    // AuditAnnotationCondition contains the inputs needed to compile, evaluate and publish a cel audit annotation
    type AuditAnnotationCondition struct {
    	Key             string
    	ValueExpression string
    }
    
    func (v *AuditAnnotationCondition) GetExpression() string {
    	return v.ValueExpression
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. plugin/pkg/admission/security/podsecurity/admission.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	genericadmissioninit "k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	corev1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/component-base/featuregate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 08:49:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. docs/distributed/CONFIG.md

    MinIO server configuration file allows users to provide topology that allows for heterogeneous hostnames, allowing MinIO to deployed in pre-existing environments without any further OS level configurations.
    
    ### Usage
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/validation.go

    	errs = append(errs, s.SecureServing.Validate()...)
    	errs = append(errs, s.Authentication.Validate()...)
    	errs = append(errs, s.Authorization.Validate()...)
    	errs = append(errs, s.Audit.Validate()...)
    	errs = append(errs, s.Admission.Validate()...)
    	errs = append(errs, s.APIEnablement.Validate(legacyscheme.Scheme, apiextensionsapiserver.Scheme, aggregatorscheme.Scheme)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top