Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for impersonation (0.42 sec)

  1. security/pkg/server/ca/server.go

    			s.monitoring.AuthnError.Increment()
    			// Return an opaque error (for security purposes) but log the full reason
    			serverCaLog.Warnf("impersonation not allowed, as node authorizer (CA_TRUSTED_NODE_ACCOUNTS) is not configured")
    			return nil, status.Error(codes.Unauthenticated, "request impersonation authentication failure")
    
    		}
    		if err := s.nodeAuthorizer.authenticateImpersonation(ctx, caller.KubernetesInfo, impersonatedIdentity); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.28
    
    // SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request.
    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    type SelfSubjectReview struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. build/root/Makefile

    #   WHAT: List of tests to run, check test/cmd/legacy-script.sh for names.
    #     For example, WHAT=deployment will run run_deployment_tests function.
    # Example:
    #   make test-cmd
    #   make test-cmd WHAT="deployment impersonation"
    endef
    .PHONY: test-cmd
    ifeq ($(PRINT_HELP),y)
    test-cmd:
    	echo "$$TEST_CMD_HELP_INFO"
    else
    test-cmd:
    	hack/make-rules/test-cmd.sh
    endif
    
    define CLEAN_HELP_INFO
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    )
    
    // Token types
    const (
    	TokenPrimary       = 1
    	TokenImpersonation = 2
    )
    
    // Impersonation levels
    const (
    	SecurityAnonymous      = 0
    	SecurityIdentification = 1
    	SecurityImpersonation  = 2
    	SecurityDelegation     = 3
    )
    
    type LUID struct {
    	LowPart  uint32
    	HighPart int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    
    	handler = filterlatency.TrackCompleted(handler)
    	handler = genericapifilters.WithImpersonation(handler, c.Authorization.Authorizer, c.Serializer)
    	handler = filterlatency.TrackStarted(handler, c.TracerProvider, "impersonation")
    
    	handler = filterlatency.TrackCompleted(handler)
    	handler = genericapifilters.WithAudit(handler, c.AuditBackend, c.AuditPolicyRuleEvaluator, c.LongRunningFunc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    			SchemaProps: spec.SchemaProps{
    				Description: "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
    				Type:        []string{"object"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

          "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top