Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for DelegatingAuthenticationOptions (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    current-context: cluster
    `), os.FileMode(0755)); err != nil {
    		t.Fatal(err)
    	}
    	remoteKubeconfig := f.Name()
    
    	testcases := []struct {
    		name                 string
    		options              *DelegatingAuthenticationOptions
    		expectError          bool
    		expectAuthenticator  bool
    		expectTokenAnonymous bool
    		expectTokenErrors    bool
    	}{
    		{
    			name:                "empty",
    			options:             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)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"corresponding to the CommonName of the client certificate.")
    }
    
    // DelegatingAuthenticationOptions provides an easy way for composing API servers to delegate their authentication to
    // the root kube API server.  The API federator will act as
    // a front proxy and direction connections will be able to delegate to the core kube API server
    type DelegatingAuthenticationOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/options/options_test.go

    						CertDirectory: "/a/b/c",
    						PairName:      "kube-scheduler",
    					},
    					HTTP2MaxStreamsPerConnection: 47,
    				}).WithLoopback(),
    				Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    					CacheTTL:   10 * time.Second,
    					ClientCert: apiserveroptions.ClientCertAuthenticationOptions{},
    					RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    // Each of them can be nil to leave the feature unconfigured on ApplyTo.
    type RecommendedOptions struct {
    	Etcd           *EtcdOptions
    	SecureServing  *SecureServingOptionsWithLoopback
    	Authentication *DelegatingAuthenticationOptions
    	Authorization  *DelegatingAuthorizationOptions
    	Audit          *AuditOptions
    	Features       *FeatureOptions
    	CoreAPI        *CoreAPIOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/options.go

    type Options struct {
    	// The default values.
    	ComponentConfig *kubeschedulerconfig.KubeSchedulerConfiguration
    
    	SecureServing  *apiserveroptions.SecureServingOptionsWithLoopback
    	Authentication *apiserveroptions.DelegatingAuthenticationOptions
    	Authorization  *apiserveroptions.DelegatingAuthorizationOptions
    	Metrics        *metrics.Options
    	Logs           *logs.Options
    	Deprecated     *DeprecatedOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options.go

    	ValidatingAdmissionPolicyStatusController *ValidatingAdmissionPolicyStatusControllerOptions
    
    	SecureServing  *apiserveroptions.SecureServingOptionsWithLoopback
    	Authentication *apiserveroptions.DelegatingAuthenticationOptions
    	Authorization  *apiserveroptions.DelegatingAuthorizationOptions
    	Metrics        *metrics.Options
    	Logs           *logs.Options
    
    	Master                      string
    	ShowHiddenMetricsForVersion string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    				CertDirectory: "/a/b/c",
    				PairName:      "kube-controller-manager",
    			},
    			HTTP2MaxStreamsPerConnection: 47,
    		}).WithLoopback(),
    		Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    			CacheTTL:            10 * time.Second,
    			TokenRequestTimeout: 10 * time.Second,
    			WebhookRetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    - No support endpointslice in linux userpace mode ([#101503](https://github.com/kubernetes/kubernetes/pull/101503), [@JornShen](https://github.com/JornShen)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Renames the timeout field for the `DelegatingAuthenticationOptions` to `TokenRequestTimeout` and set the timeout only for the token review client. Previously the timeout was also applied to watches making them reconnecting every 10 seconds. ([#100959](https://github.com/kubernetes/kubernetes/pull/100959),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

    - Bump runc to v1.1.4. ([#113719](https://github.com/kubernetes/kubernetes/pull/113719), [@pacoxu](https://github.com/pacoxu))
    - Callers using `DelegatingAuthenticationOptions` can now use `DisableAnonymous` to disable Anonymous authentication. ([#112181](https://github.com/kubernetes/kubernetes/pull/112181), [@xueqzhan](https://github.com/xueqzhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top