Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for auditID (0.21 sec)

  1. pilot/pkg/security/authz/model/model.go

    		// result in a smaller allow policy (i.e. less likely to allow a request).
    		return err
    	}
    
    	// Ignore the error for a deny or audit policy. This will make the current rule ignored and continue the generation of
    	// the next rule, effectively resulting in a wider deny or audit policy (i.e. more likely to deny or audit a request).
    	return nil
    }
    
    func (p *ruleList) copy() ruleList {
    	r := ruleList{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. OWNERS_ALIASES

      sig-architecture-approvers:
        - dims
        - derekwaynecarr
        - johnbelamaric
      # sig-auth subproject aliases
      sig-auth-audit-approvers:
        - sttts
        - tallclair
      sig-auth-audit-reviewers:
        - sttts
        - tallclair
      sig-auth-authenticators-approvers:
        - deads2k
        - liggitt
        - mikedanese
        - enj
      sig-auth-authenticators-reviewers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/registry/core/serviceaccount/storage/token.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/serviceaccount"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	ExecutingPhase = "executing"
    )
    
    const (
    	// deprecatedAnnotationKey is a key for an audit annotation set to
    	// "true" on requests made to deprecated API versions
    	deprecatedAnnotationKey = "k8s.io/deprecated"
    	// removedReleaseAnnotationKey is a key for an audit annotation set to
    	// the target removal release, in "<major>.<minor>" format,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. cmd/utils.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/rest"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/certs"
    	"github.com/minio/pkg/v3/env"
    	xaudit "github.com/minio/pkg/v3/logger/message/audit"
    	xnet "github.com/minio/pkg/v3/net"
    	"golang.org/x/oauth2"
    )
    
    const (
    	slashSeparator = "/"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Version will enable the /version endpoint if non-nil
    	Version *version.Info
    	// AuditBackend is where audit events are sent to.
    	AuditBackend audit.Backend
    	// AuditPolicyRuleEvaluator makes the decision of whether and how to audit log a request.
    	AuditPolicyRuleEvaluator audit.PolicyRuleEvaluator
    	// ExternalAddress is the host name to use for external (public internet) facing URLs (e.g. Swagger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. pkg/serviceaccount/jwt.go

    	"encoding/json"
    	"fmt"
    	"strings"
    
    	jose "gopkg.in/square/go-jose.v2"
    	"gopkg.in/square/go-jose.v2/jwt"
    
    	v1 "k8s.io/api/core/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	apiserverserviceaccount "k8s.io/apiserver/pkg/authentication/serviceaccount"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    		tracker.DecodeTracker.TrackDuration(d)
    	}
    }
    
    // AuditAnnotationsFromLatencyTrackers will inspect each latency tracker
    // associated with the request context and return a set of audit
    // annotations that can be added to the API audit entry.
    func AuditAnnotationsFromLatencyTrackers(ctx context.Context) map[string]string {
    	const (
    		transformLatencyKey         = "apiserver.latency.k8s.io/transform-response-object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims.go

    */
    
    package serviceaccount
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"time"
    
    	"github.com/google/uuid"
    	"gopkg.in/square/go-jose.v2/jwt"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apiserver/pkg/audit"
    	apiserverserviceaccount "k8s.io/apiserver/pkg/authentication/serviceaccount"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    		$2 ~ /^CLONE_[A-Z_]+/ ||
    		$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+|BPF_F_LINK)$/ &&
    		$2 ~ /^(BPF|DLT)_/ ||
    		$2 ~ /^AUDIT_/ ||
    		$2 ~ /^(CLOCK|TIMER)_/ ||
    		$2 ~ /^CAN_/ ||
    		$2 ~ /^CAP_/ ||
    		$2 ~ /^CP_/ ||
    		$2 ~ /^CPUSTATES$/ ||
    		$2 ~ /^CTLIOCGINFO$/ ||
    		$2 ~ /^ALG_/ ||
    		$2 ~ /^FI(CLONE|DEDUPERANGE)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top