Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for reconciling (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/controlplane/reconcilers/instancecount_test.go

    			err := reconciler.ReconcileEndpoints(test.serviceName, netutils.ParseIPSloppy(test.ip), test.endpointPorts, true)
    			if err != nil {
    				t.Errorf("unexpected error reconciling: %v", err)
    			}
    
    			err = verifyCreatesAndUpdates(fakeClient, test.expectCreate, test.expectUpdate)
    			if err != nil {
    				t.Errorf("unexpected error in side effects: %v", err)
    			}
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pilot/pkg/status/distribution/reporter.go

    			} else if nonce == r.ledger.RootHash() {
    				scope.Warnf("Cache appears to be missing latest version of %s", key)
    			}
    			if out.InProgressResources[key] >= out.DataPlaneCount {
    				// if this resource is done reconciling, let's not worry about it anymore
    				finishedResources = append(finishedResources, res)
    				// deleting it here doesn't work because we have a read lock and are inside an iterator.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/lease.go

    	shouldCreate := false
    	if err != nil {
    		if !errors.IsNotFound(err) {
    			return err
    		}
    
    		// there are no endpoints and we should stop reconciling
    		if r.stopReconcilingCalled.Load() {
    			return nil
    		}
    
    		shouldCreate = true
    		e = &corev1.Endpoints{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      serviceName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. architecture/environments/operator.md

    a [schema](../operator/pkg/apis/istio/v1alpha1/values_types.proto).
    1. [Controller](#k8s-controller) code. The code comprises the K8s listener, webhook and logic for reconciling the cluster
    to an `IstioOperatorSpec` CR.
    1. [Manifest creation](#manifest-creation) code. User settings are overlaid on top of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top