Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for resyncs (0.15 sec)

  1. cmd/bucket-replication.go

    		Error:     errStr,
    		Bytes:     sz,
    	}
    }
    
    // delete resync metadata from replication resync state in memory
    func (p *ReplicationPool) deleteResyncMetadata(ctx context.Context, bucket string) {
    	if p == nil {
    		return
    	}
    	p.resyncer.Lock()
    	delete(p.resyncer.statusMap, bucket)
    	defer p.resyncer.Unlock()
    
    	globalSiteResyncMetrics.deleteBucket(bucket)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		}
    	}
    	return pi, true
    }
    
    // startResync initiates resync of data to peerSite specified. The overall site resync status
    // is maintained in .minio.sys/buckets/site-replication/resync/<deployment-id.meta>, while collecting
    // individual bucket resync status in .minio.sys/buckets/<bucket-name>/replication/resync.bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    If this happens to you, you can wait at most 10 minutes for the replication controller to start a resync, the extra pods will then be deleted. Or, you can manually trigger a resync by change the replicas in the spec of the replication controller.
    
    ### kubectl delete: < v1.4.0 client vs >=v1.4.0 cluster
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// long interval because a prior pod is still terminating.
    	//
    	// As an event-driven (by UpdatePod) controller, the podWorkers must periodically be resynced
    	// by the kubelet invoking SyncKnownPods with the desired state (admitted pods in podManager).
    	// Since the podManager may be unaware of some running pods due to force deletion, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Provide kubernetes-controller-manager flags to control volume attach/detach reconciler sync.  The duration of the syncs can be controlled, and the syncs can be shut off as well.  ([#39551](https://github.com/kubernetes/kubernetes/pull/39551), [@chrislovecnm](https://github.com/chrislovecnm))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			}
    		}
    	}
    }
    
    // DaemonSets should be resynced when node labels or taints changed
    func TestUpdateNode(t *testing.T) {
    	var enqueued bool
    	cases := []struct {
    		test               string
    		newNode            *v1.Node
    		oldNode            *v1.Node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      if [[ -n "${SERVICE_CLUSTER_IP_RANGE:-}" ]]; then
        params+=("--service-cluster-ip-range=${SERVICE_CLUSTER_IP_RANGE}")
      fi
      if [[ -n "${CONCURRENT_SERVICE_SYNCS:-}" ]]; then
        params+=("--concurrent-service-syncs=${CONCURRENT_SERVICE_SYNCS}")
      fi
      if [[ "${NETWORK_PROVIDER:-}" == "kubenet" ]]; then
        params+=("--allocate-node-cidrs=true")
      elif [[ -n "${ALLOCATE_NODE_CIDRS:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // Usage:
    //
    //	go work sync
    //
    // Sync syncs the workspace's build list back to the
    // workspace's modules
    //
    // The workspace's build list is the set of versions of all the
    // (transitive) dependency modules used to do builds in the workspace. go
    // work sync generates that build list using the Minimal Version Selection
    // algorithm, and then syncs those versions back to each of modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    		metricsClient,
    		informerFactory.Autoscaling().V2().HorizontalPodAutoscalers(),
    		informerFactory.Core().V1().Pods(),
    		100*time.Millisecond, // we need non-zero resync period to avoid race conditions
    		defaultDownscalestabilizationWindow,
    		defaultTestingTolerance,
    		defaultTestingCPUInitializationPeriod,
    		defaultTestingDelayOfInitialReadinessStatus,
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top