Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for SyncPeriod (0.23 sec)

  1. cmd/kube-proxy/app/server.go

    	fs.DurationVar(&o.config.IPTables.SyncPeriod.Duration, "iptables-sync-period", o.config.IPTables.SyncPeriod.Duration, "An interval (e.g. '5s', '1m', '2h22m') indicating how frequently various re-synchronizing and cleanup operations are performed. Must be greater than 0.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // ControllerParameters contains arguments for creation of a new
    // PersistentVolume controller.
    type ControllerParameters struct {
    	KubeClient                clientset.Interface
    	SyncPeriod                time.Duration
    	VolumePlugins             []vol.VolumePlugin
    	VolumeInformer            coreinformers.PersistentVolumeInformer
    	ClaimInformer             coreinformers.PersistentVolumeClaimInformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	SetPodAllocation(pod *v1.Pod) error
    
    	// SetPodResizeStatus checkpoints the last resizing decision for the pod.
    	SetPodResizeStatus(podUID types.UID, resize v1.PodResizeStatus) error
    }
    
    const syncPeriod = 10 * time.Second
    
    // NewManager returns a functional Manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/core.go

    	}
    
    	params := persistentvolumecontroller.ControllerParameters{
    		KubeClient:                controllerContext.ClientBuilder.ClientOrDie("persistent-volume-binder"),
    		SyncPeriod:                controllerContext.ComponentConfig.PersistentVolumeBinderController.PVClaimBinderSyncPeriod.Duration,
    		VolumePlugins:             plugins,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    	if informerFactory == nil {
    		informerFactory = informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    	}
    	params := ControllerParameters{
    		KubeClient:                kubeClient,
    		SyncPeriod:                5 * time.Second,
    		VolumePlugins:             []volume.VolumePlugin{},
    		VolumeInformer:            informerFactory.Core().V1().PersistentVolumes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    	}
    	return matched, numEndpoints, numComments
    }
    
    func TestSyncProxyRulesLargeClusterMode(t *testing.T) {
    	ipt := iptablestest.NewFake()
    	fp := NewFakeProxier(ipt)
    	fp.masqueradeAll = true
    	fp.syncPeriod = 30 * time.Second
    
    	makeServiceMap(fp,
    		makeTestService("ns1", "svc1", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeClusterIP
    			svc.Spec.ClusterIP = "172.30.0.41"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"syncPeriod": {
    						SchemaProps: spec.SchemaProps{
    							Description: "syncPeriod is an interval (e.g. '5s', '1m', '2h22m') indicating how frequently various re-synchronizing and cleanup operations are performed. Must be greater than 0.",
    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