Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for reconciling (0.2 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. releasenotes/notes/gateway-handler.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43332
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 15:34:49 UTC 2023
    - 241 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

            status:
              description: 'Status describes each of istio control plane component status at the current time.
                0 means NONE, 1 means UPDATING, 2 means HEALTHY, 3 means ERROR, 4 means RECONCILING.
                More info: https://github.com/istio/api/blob/master/operator/v1alpha1/istio.operator.v1alpha1.pb.html &
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top