Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewBuiltInAuthenticationOptions (0.44 sec)

  1. pkg/kubeapiserver/options/authentication_test.go

    		},
    	}
    
    	for _, testcase := range testCases {
    		t.Run(testcase.name, func(t *testing.T) {
    			options := NewBuiltInAuthenticationOptions()
    			options.OIDC = testcase.testOIDC
    			options.ServiceAccounts = testcase.testSA
    			options.WebHook = testcase.testWebHook
    			options.AuthenticationConfigFile = testcase.testAuthenticationConfigFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    	// before we fail the webhook call in order to limit the fan out that ensues when the system is degraded.
    	RetryBackoff *wait.Backoff
    }
    
    // NewBuiltInAuthenticationOptions create a new BuiltInAuthenticationOptions, just set default token cache TTL
    func NewBuiltInAuthenticationOptions() *BuiltInAuthenticationOptions {
    	return &BuiltInAuthenticationOptions{
    		TokenSuccessCacheTTL: 10 * time.Second,
    		TokenFailureCacheTTL: 0 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options.go

    		Features:                genericoptions.NewFeatureOptions(),
    		Admission:               kubeoptions.NewAdmissionOptions(),
    		Authentication:          kubeoptions.NewBuiltInAuthenticationOptions().WithAll(),
    		Authorization:           kubeoptions.NewBuiltInAuthorizationOptions(),
    		APIEnablement:           genericoptions.NewAPIEnablementOptions(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top