Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for auditID (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	proto.RegisterType((*Policy)(nil), "k8s.io.apiserver.pkg.apis.audit.v1.Policy")
    	proto.RegisterType((*PolicyList)(nil), "k8s.io.apiserver.pkg.apis.audit.v1.PolicyList")
    	proto.RegisterType((*PolicyRule)(nil), "k8s.io.apiserver.pkg.apis.audit.v1.PolicyRule")
    }
    
    func init() {
    	proto.RegisterFile("k8s.io/apiserver/pkg/apis/audit/v1/generated.proto", fileDescriptor_62937bb89ca7b6dd)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/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 Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. 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)
  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/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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	"k8s.io/apiserver/pkg/admission/plugin/policy/generic"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/matching"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/warning"
    )
    
    var (
    	clusterScopedParamsGVK schema.GroupVersionKind = schema.GroupVersionKind{
    		Group:   "example.com",
    		Version: "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if err != nil {
    			return err
    		}
    	}
    
    	ctx, span := tracing.Start(ctx, "cacher list",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.Stringer("type", c.groupResource))
    	defer span.End(500 * time.Millisecond)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	})
    }
    
    const (
    	maxAuditAnnotations = 20
    	// use a 5kb limit the CEL expression, note that this is less than the length limit
    	// for the audit annotation value limit (10kb) since an expressions that concatenates
    	// strings will often produce a longer value than the expression
    	maxAuditAnnotationValueExpressionLength = 5 * 1024
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top