Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for CacheTTL (0.14 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    address: 0.0.0.0
    apiVersion: kubelet.config.k8s.io/v1beta1
    authentication:
      anonymous:
        enabled: false
      webhook:
        cacheTTL: 2m0s
        enabled: true
      x509: {}
    authorization:
      mode: Webhook
      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	return newEnvelopeTransformerWithClock(envelopeService, providerName, stateFunc, apiServerID, cacheTTL, clock.RealClock{})
    }
    
    func newEnvelopeTransformerWithClock(envelopeService kmsservice.Service, providerName string, stateFunc StateFunc, apiServerID string, cacheTTL time.Duration, clock clock.Clock) value.Transformer {
    	return &envelopeTransformer{
    		envelopeService: envelopeService,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  3. pilot/pkg/credentials/kube/secrets.go

    	}
    }
    
    func (s *CredentialsController) Close() {
    	s.secrets.ShutdownHandlers()
    }
    
    func (s *CredentialsController) HasSynced() bool {
    	return s.secrets.HasSynced()
    }
    
    const cacheTTL = time.Minute
    
    // clearExpiredCache iterates through the cache and removes all expired entries. Should be called with mutex held.
    func (s *CredentialsController) clearExpiredCache() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj)
    			obj.EnableServer = true
    			obj.Authentication.Anonymous.Enabled = true
    			obj.Authentication.Webhook.Enabled = false
    			obj.Authentication.Webhook.CacheTTL = metav1.Duration{Duration: 2 * time.Minute}
    			obj.Authorization.Mode = kubeletconfig.KubeletAuthorizationModeAlwaysAllow
    			obj.Authorization.Webhook.CacheAuthorizedTTL = metav1.Duration{Duration: 5 * time.Minute}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *KubeletWebhookAuthentication) DeepCopyInto(out *KubeletWebhookAuthentication) {
    	*out = *in
    	out.CacheTTL = in.CacheTTL
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletWebhookAuthentication.
    func (in *KubeletWebhookAuthentication) DeepCopy() *KubeletWebhookAuthentication {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	if err := v1.Convert_Pointer_bool_To_bool(&in.Enabled, &out.Enabled, s); err != nil {
    		return err
    	}
    	out.CacheTTL = in.CacheTTL
    	return nil
    }
    
    // Convert_v1beta1_KubeletWebhookAuthentication_To_config_KubeletWebhookAuthentication is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. 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{
    						UsernameHeaders:     []string{"x-remote-user"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top