Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 250 for Authenticators (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    			},
    		}
    	}
    
    	if len(authenticators) == 0 {
    		if c.Anonymous {
    			return anonymous.NewAuthenticator(), &securityDefinitions, nil
    		}
    		return nil, nil, errors.New("No authentication method configured")
    	}
    
    	authenticator := group.NewAuthenticatedGroupAdder(unionauth.New(authenticators...))
    	if c.Anonymous {
    		authenticator = unionauth.NewFailOnError(authenticator, anonymous.NewAuthenticator())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. security/pkg/server/ca/server_test.go

    	testCases := map[string]struct {
    		authenticators []security.Authenticator
    		ca             CertificateAuthority
    		certChain      []string
    		code           codes.Code
    	}{
    		"No authenticator": {
    			authenticators: nil,
    			code:           codes.Unauthenticated,
    			ca:             &mockca.FakeCA{},
    		},
    		"Unauthenticated request": {
    			authenticators: []security.Authenticator{&mockAuthenticator{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/authenticator/config.go

    		)
    		authenticators = append(authenticators, authenticator.WrapAudienceAgnosticRequest(config.APIAudiences, requestHeaderAuthenticator))
    	}
    
    	// X509 methods
    	if config.ClientCAContentProvider != nil {
    		certAuth := x509.NewDynamic(config.ClientCAContentProvider.VerifyOptions, x509.CommonNameUserConversion)
    		authenticators = append(authenticators, certAuth)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pkg/security/authentication.go

    // Authenticate authenticates the ADS request using the configured authenticators.
    // Returns the validated principals or an error.
    // If no authenticators are configured, or if the request is on a non-secure
    // stream ( 15010 ) - returns amn empty caller and no errors.
    func Authenticate(ctx context.Context, authenticators []Authenticator) (*Caller, error) {
    	if !features.XDSAuth {
    		return nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 10:09:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authenticator/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authenticators-approvers
    reviewers:
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authenticators-approvers
    reviewers:
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authenticators-approvers
    reviewers:
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    reviewers:
      - sig-auth-authenticators-approvers
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 159 bytes
    - Viewed (0)
  9. pkg/registry/authentication/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-authenticators-approvers
    reviewers:
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 170 bytes
    - Viewed (0)
  10. pkg/apis/authentication/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # approval on api packages bubbles to api-approvers
    reviewers:
      - sig-auth-authenticators-approvers
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 211 bytes
    - Viewed (0)
Back to top