Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for resyncPeriod (0.2 sec)

  1. pkg/controller/controller_utils.go

    )
    
    type ResyncPeriodFunc func() time.Duration
    
    // Returns 0 for resyncPeriod in case resyncing is not needed.
    func NoResyncPeriodFunc() time.Duration {
    	return 0
    }
    
    // StaticResyncPeriodFunc returns the resync period specified
    func StaticResyncPeriodFunc(resyncPeriod time.Duration) ResyncPeriodFunc {
    	return func() time.Duration {
    		return resyncPeriod
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller_test.go

    	close(alwaysStarted)
    	resourceQuotaControllerOptions := &ControllerOptions{
    		QuotaClient:               kubeClient.CoreV1(),
    		ResourceQuotaInformer:     informerFactory.Core().V1().ResourceQuotas(),
    		ResyncPeriod:              controller.NoResyncPeriodFunc,
    		ReplenishmentResyncPeriod: controller.NoResyncPeriodFunc,
    		IgnoredResourcesFunc:      quotaConfiguration.IgnoredResources,
    		DiscoveryFunc:             discoveryFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    	t.Helper()
    	return newControllerFromClientWithClock(ctx, t, kubeClient, resyncPeriod, realClock)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	eventBroadcaster          record.EventBroadcaster
    	eventRecorder             record.EventRecorder
    	volumePluginMgr           vol.VolumePluginMgr
    	enableDynamicProvisioning bool
    	resyncPeriod              time.Duration
    
    	// Cache of the last known version of volumes and claims. This cache is
    	// thread safe as long as the volumes/claims there are not modified, they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.19.md

      -  Fixed a bug in the forward plugin where only the first upstream server is always selected no matter which policy is set.
      -  Remove already deprecated options `resyncperiod` and `upstream` in the Kubernetes plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.16.md

    - kubeadm
    
      - The CoreDNS Deployment now checks readiness via the `ready` plugin.
      - The `proxy` plugin has been deprecated. The `forward` plugin is to be used instead.
      - `kubernetes` plugin removes the `resyncperiod` option.
      - The `upstream` option is deprecated and ignored if included.
        ([#82127](https://github.com/kubernetes/kubernetes/pull/82127), [@rajansandeep](https://github.com/rajansandeep))
    
    - kubectl
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.20.md

      -  Fixed a bug in the forward plugin where only the first upstream server is always selected no matter which policy is set.
      -  Remove already deprecated options `resyncperiod` and `upstream` in the Kubernetes plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    * Fixes a bug in HPA controller so HPAs are always updated every resyncPeriod (15 seconds). ([#72373](https://github.com/kubernetes/kubernetes/pull/72373), [@krzysztof-jastrzebski](https://github.com/krzysztof-jastrzebski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.14.md

    * Fixes a bug in HPA controller so HPAs are always updated every resyncPeriod (15 seconds). ([#72373](https://github.com/kubernetes/kubernetes/pull/72373), [@krzysztof-jastrzebski](https://github.com/krzysztof-jastrzebski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

    * change azure disk host cache to ReadOnly by default ([#72229](https://github.com/kubernetes/kubernetes/pull/72229), [@andyzhangx](https://github.com/andyzhangx))
    * Fixes a bug in HPA controller so HPAs are always updated every resyncPeriod (15 seconds). ([#72373](https://github.com/kubernetes/kubernetes/pull/72373), [@krzysztof-jastrzebski](https://github.com/krzysztof-jastrzebski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top