Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 148 for auditID (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. hack/local-up-cluster.sh

        fi
    
        if [[ -z "${AUDIT_POLICY_FILE}" ]]; then
          cat <<EOF > "${TMP_DIR}"/kube-audit-policy-file
    # Log all requests at the Metadata level.
    apiVersion: audit.k8s.io/v1
    kind: Policy
    rules:
    - level: Metadata
    EOF
          AUDIT_POLICY_FILE="${TMP_DIR}/kube-audit-policy-file"
        fi
    
        APISERVER_LOG=${LOG_DIR}/kube-apiserver.log
        # shellcheck disable=SC2086
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top