Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CacheTTL (0.17 sec)

  1. pkg/controlplane/apiserver/options/options_test.go

    				Allow: false,
    			},
    			ClientCert: &apiserveroptions.ClientCertAuthenticationOptions{
    				ClientCA: "/client-ca",
    			},
    			WebHook: &kubeoptions.WebHookAuthenticationOptions{
    				CacheTTL:     180000000000,
    				ConfigFile:   "/token-webhook-config",
    				Version:      "v1beta1",
    				RetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    	kubeletConfigurationNonPathFieldPaths = sets.New[string](
    		"Address",
    		"AllowedUnsafeSysctls[*]",
    		"Authentication.Anonymous.Enabled",
    		"Authentication.Webhook.CacheTTL.Duration",
    		"Authentication.Webhook.Enabled",
    		"Authorization.Mode",
    		"Authorization.Webhook.CacheAuthorizedTTL.Duration",
    		"Authorization.Webhook.CacheUnauthorizedTTL.Duration",
    		"CPUCFSQuota",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    				Issuers:  []string{"http://foo.bar.com"},
    				JWKSURI:  "https://baz.com",
    			},
    			testWebHook: &WebHookAuthenticationOptions{
    				ConfigFile: "configfile",
    				Version:    "v1",
    				CacheTTL:   60 * time.Second,
    				RetryBackoff: &wait.Backoff{
    					Duration: 500 * time.Millisecond,
    					Factor:   1.5,
    					Jitter:   0.2,
    					Steps:    0,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    					Allow: false,
    				},
    				ClientCert: &apiserveroptions.ClientCertAuthenticationOptions{
    					ClientCA: "/client-ca",
    				},
    				WebHook: &kubeoptions.WebHookAuthenticationOptions{
    					CacheTTL:     180000000000,
    					ConfigFile:   "/token-webhook-config",
    					Version:      "v1beta1",
    					RetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    		"Use the TokenReview API to determine authentication for bearer tokens.")
    	fs.DurationVar(&c.Authentication.Webhook.CacheTTL.Duration, "authentication-token-webhook-cache-ttl", c.Authentication.Webhook.CacheTTL.Duration, ""+
    		"The duration to cache responses from the webhook token authenticator.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. 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(),
    			ClientCert:          apiserveroptions.ClientCertAuthenticationOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"cacheTTL": {
    						SchemaProps: spec.SchemaProps{
    							Description: "cacheTTL enables caching of authentication results",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top