Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for reconciling (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    				if server.removeLease {
    					err = fakeReconciler.RemoveLease(server.id)
    					// if the ip is not on the endpoints, it must return an storage error and stop reconciling
    					if err != nil {
    						t.Errorf("unexpected error reconciling: %v", err)
    					}
    				}
    			}
    
    			leases, err := fakeReconciler.ListLeases()
    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. pkg/controller/job/metrics/metrics.go

    var (
    	// JobSyncDurationSeconds tracks the latency of Job syncs. Possible label
    	// values:
    	//   completion_mode: Indexed, NonIndexed
    	//   result:          success, error
    	//   action:          reconciling, tracking, pods_created, pods_deleted
    	JobSyncDurationSeconds = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      JobControllerSubsystem,
    			Name:           "job_sync_duration_seconds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/lease_test.go

    			// if the ip is not on the endpoints, it must return an storage error and stop reconciling
    			if !contains(test.endpointKeys, test.ip) {
    				if !storage.IsNotFound(err) {
    					t.Errorf("expected error StorageError: key not found, Code: 1, Key: /registry/base/key/%s got:  %v", test.ip, err)
    				}
    			} else if err != nil {
    				t.Errorf("unexpected error reconciling: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  4. pkg/kube/controllers/common.go

    			})
    		},
    	}
    }
    
    // ObjectHandler returns a handler that will act on the latest version of an object
    // This means Add/Update/Delete are all handled the same and are just used to trigger reconciling.
    func ObjectHandler(handler func(o Object)) cache.ResourceEventHandler {
    	h := func(obj any) {
    		o := ExtractObject(obj)
    		if o == nil {
    			return
    		}
    		handler(o)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/reconciler.go

    // - If all components are HEALTHY, overall status is HEALTHY.
    // - If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING.
    // - If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING.
    // - If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING.
    // - If any component is in ERROR state, overall status is ERROR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/output.json

                         "legendFormat": "{{cluster}} - {{namespace}}\n"
                      }
                   ],
                   "title": "Reconciling Latency Over Time",
                   "type": "heatmap"
                },
                {
                   "datasource": {
                      "type": "datasource",
                      "uid": "-- Mixed --"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cluster/addons/addon-manager/kube-addons.sh

      # ADDON_MANAGER_LABEL=EnsureExists will still be reconciled.
      # Filter out `configured` message to not noisily log.
      # `created`, `pruned` and errors will be logged.
      log INFO "== Reconciling with deprecated label =="
      # shellcheck disable=SC2086
      # Disabling because "${KUBECTL_OPTS}" needs to allow for expansion here
      ${KUBECTL} ${KUBECTL_OPTS} apply -f ${ADDON_PATH} \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is disabled via the command line")
    		} else if rc.syncDuration < time.Second {
    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is set to less than one second via the command line")
    		} else if time.Since(rc.timeOfLastSync) > rc.syncDuration {
    			logger.V(5).Info("Starting reconciling attached volumes still attached")
    			rc.sync()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pilot/pkg/controllers/untaint/nodeuntainter.go

    	n.queue.Run(stop)
    	n.podsClient.ShutdownHandlers()
    	n.nodesClient.ShutdownHandlers()
    }
    
    func (n *NodeUntainter) reconcileNode(key types.NamespacedName) error {
    	log.Debugf("reconciling node %s", key.Name)
    	node := n.nodesClient.Get(key.Name, key.Namespace)
    	if node == nil {
    		return nil
    	}
    
    	err := removeReadinessTaint(n.nodesClient, node)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. cni/pkg/repair/repaircontroller.go

    		return nil
    	}
    	return c.ReconcilePod(pod)
    }
    
    func (c *Controller) ReconcilePod(pod *corev1.Pod) (err error) {
    	if !c.matchesFilter(pod) {
    		return // Skip, pod doesn't need repair
    	}
    	repairLog.Debugf("Reconciling pod %s", pod.Name)
    
    	if c.cfg.RepairPods {
    		return c.repairPod(pod)
    	} else if c.cfg.DeletePods {
    		return c.deleteBrokenPod(pod)
    	} else if c.cfg.LabelPods {
    		return c.labelBrokenPod(pod)
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top