Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Reconciled (0.35 sec)

  1. pkg/controller/statefulset/stateful_set.go

    	logger.V(4).Info("Pod deleted.", "pod", klog.KObj(pod), "caller", utilruntime.GetCaller())
    	ssc.enqueueStatefulSet(set)
    }
    
    // getPodsForStatefulSet returns the Pods that a given StatefulSet should manage.
    // It also reconciles ControllerRef by adopting/orphaning.
    //
    // NOTE: Returned Pods are pointers to objects from the cache.
    // If you need to modify one, you need to copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector-canary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    kind: ConfigMap
    metadata:
      labels:
        app: sidecar-injector
        istio: sidecar-injector
        operator.istio.io/component: Injector
        operator.istio.io/managed: Reconcile
        operator.istio.io/version: 1.3.1
        release: istio
      name: istio-sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller.go

    	utilruntime.HandleError(err)
    	logger.V(2).Info("Dropping deployment out of the queue", "deployment", klog.KRef(ns, name), "err", err)
    	dc.queue.Forget(key)
    }
    
    // getReplicaSetsForDeployment uses ControllerRefManager to reconcile
    // ControllerRef by adopting and orphaning.
    // It returns the list of ReplicaSets that this Deployment should manage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction_test.go

    		}
    	}
    }
    
    // TestEventualConsistency verifies if getPodsAssignedToNode returns incomplete data
    // (e.g. due to watch latency), it will reconcile the remaining pods eventually.
    // This scenario is partially covered by TestUpdatePods, but given this is an important
    // property of TaintManager, it's better to have explicit test for this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. pkg/zdsapi/zds.pb.go

    }
    
    func (x *DelWorkload) GetUid() string {
    	if x != nil {
    		return x.Uid
    	}
    	return ""
    }
    
    // Let ztunnel know that a full snapshot was sent. Ztunnel should reconcile its internal state
    // and remove internal entries that were not sent.
    type SnapshotSent struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/controller/daemon/update.go

    		if err != nil {
    			return nil, err
    		}
    	}
    	return keepCur, nil
    }
    
    // controlledHistories returns all ControllerRevisions controlled by the given DaemonSet.
    // This also reconciles ControllerRef by adopting/orphaning.
    // Note that returned histories are pointers to objects in the cache.
    // If you want to modify one, you need to deep-copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters.go

    	volumesInUseFunc func() []v1.UniqueVolumeName, // typically Kubelet.volumeManager.GetVolumesInUse
    ) Setter {
    	return func(ctx context.Context, node *v1.Node) error {
    		// Make sure to only update node status after reconciler starts syncing up states
    		if syncedFunc() {
    			node.Status.VolumesInUse = volumesInUseFunc()
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    			}
    		}
    	}
    
    	// Remove all matched service subsets. When we rebuild clusters, we will rebuild the subset clusters as well.
    	// We can reconcile the actual subsets that are needed when we rebuild the clusters.
    	for _, matchedSvc := range services {
    		if subsetClusters[matchedSvc.Hostname.String()] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top