Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for ExtraHeaderPrefixes (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader.go

    	groupHeaders StringSliceProvider
    
    	// extraHeaderPrefixes are the head prefixes to check (case-insensitively) for filling in
    	// the user.Info.Extra.  All values of all matching headers will be added.
    	extraHeaderPrefixes StringSliceProvider
    }
    
    func New(nameHeaders, groupHeaders, extraHeaderPrefixes []string) (authenticator.Request, error) {
    	trimmedNameHeaders, err := trimHeaders(nameHeaders...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:19:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller_test.go

    		t.Fatalf("incorrect groupHeaders, got %v, wanted %v", target.GroupHeaders(), expected.groupHeaders)
    	}
    	if !equality.Semantic.DeepEqual(target.ExtraHeaderPrefixes(), expected.extraHeaderPrefixes) {
    		t.Fatalf("incorrect extraheaderPrefixes, got %v, wanted %v", target.ExtraHeaderPrefixes(), expected.extraHeaderPrefixes)
    	}
    	if !equality.Semantic.DeepEqual(target.AllowedClientNames(), expected.allowedClientNames) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication.go

    			standardRequestHeaderConfig.GroupHeaders,
    			standardRequestHeaderConfig.ExtraHeaderPrefixes,
    		)
    
    		// also delete any custom front proxy headers
    		if requestHeaderConfig != nil {
    			headerrequest.ClearAuthenticationHeaders(
    				req.Header,
    				requestHeaderConfig.UsernameHeaders,
    				requestHeaderConfig.GroupHeaders,
    				requestHeaderConfig.ExtraHeaderPrefixes,
    			)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    			testOptions: &RequestHeaderAuthenticationOptions{
    				UsernameHeaders:     headerrequest.StaticStringSlice{"x-remote-user"},
    				GroupHeaders:        headerrequest.StaticStringSlice{"x-remote-group"},
    				ExtraHeaderPrefixes: headerrequest.StaticStringSlice{"x-remote-extra-"},
    				AllowedNames:        headerrequest.StaticStringSlice{"kube-aggregator"},
    			},
    		},
    		{
    			name: "test when ClientCAFile is not nil",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		klog.Warningf("--requestheader-group-headers is set without specifying the standard X-Remote-Group header - API aggregation will not work")
    	}
    	if len(s.ExtraHeaderPrefixes) > 0 && !caseInsensitiveHas(s.ExtraHeaderPrefixes, "X-Remote-Extra-") {
    		klog.Warningf("--requestheader-extra-headers-prefix is set without specifying the standard X-Remote-Extra- header prefix - API aggregation will not work")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/requestheader.go

    	GroupHeaders headerrequest.StringSliceProvider
    	// ExtraHeaderPrefixes are the head prefixes to check (case-insentively) for filling in
    	// the user.Info.Extra.  All values of all matching headers will be added.
    	ExtraHeaderPrefixes headerrequest.StringSliceProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    	UsernameHeaders() []string
    	GroupHeaders() []string
    	ExtraHeaderPrefixes() []string
    	AllowedClientNames() []string
    }
    
    var _ RequestHeaderAuthRequestProvider = &RequestHeaderAuthRequestController{}
    
    type requestHeaderBundle struct {
    	UsernameHeaders     []string
    	GroupHeaders        []string
    	ExtraHeaderPrefixes []string
    	AllowedClientNames  []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    			c.RequestHeaderConfig.CAContentProvider.VerifyOptions,
    			c.RequestHeaderConfig.AllowedClientNames,
    			c.RequestHeaderConfig.UsernameHeaders,
    			c.RequestHeaderConfig.GroupHeaders,
    			c.RequestHeaderConfig.ExtraHeaderPrefixes,
    		)
    		authenticators = append(authenticators, requestHeaderAuthenticator)
    	}
    
    	// x509 client cert auth
    	if c.ClientCertificateCAContentProvider != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/options_test.go

    					RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    						UsernameHeaders:     []string{"x-remote-user"},
    						GroupHeaders:        []string{"x-remote-group"},
    						ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    					},
    					RemoteKubeConfigFileOptional: true,
    				},
    				Authorization: &apiserveroptions.DelegatingAuthorizationOptions{
    					AllowCacheTTL:                10 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authenticator/config.go

    			config.RequestHeaderConfig.AllowedClientNames,
    			config.RequestHeaderConfig.UsernameHeaders,
    			config.RequestHeaderConfig.GroupHeaders,
    			config.RequestHeaderConfig.ExtraHeaderPrefixes,
    		)
    		authenticators = append(authenticators, authenticator.WrapAudienceAgnosticRequest(config.APIAudiences, requestHeaderAuthenticator))
    	}
    
    	// X509 methods
    	if config.ClientCAContentProvider != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top