Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for Reconciled (0.31 sec)

  1. pkg/kubelet/config/config_test.go

    		// If status is not changed, no reconcile should be triggered
    		channel <- CreatePodUpdate(op, TestSource, pods...)
    		expectNoPodUpdate(t, ch)
    
    		// If the pod status is changed and not updated, a reconcile should be triggered
    		pods, podWithStatusChange = newTestPods(true, false)
    		channel <- CreatePodUpdate(op, TestSource, pods...)
    		expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.RECONCILE, TestSource, podWithStatusChange))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/kube/kclient/crdwatcher.go

    	c := &crdWatcher{
    		running:   make(chan struct{}),
    		callbacks: map[string][]func(){},
    	}
    
    	c.queue = controllers.NewQueue("crd watcher",
    		controllers.WithReconciler(c.Reconcile))
    	c.crds = NewMetadata(client, gvr.CustomResourceDefinition, Filter{
    		ObjectFilter: kubetypes.NewStaticObjectFilter(minimumVersionFilter),
    	})
    	c.crds.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    	return c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		// Add a new pod between DSW ppoulator and reconciler run
    		_, err = adc.kubeClient.CoreV1().Pods(newPod.ObjectMeta.Namespace).Create(tCtx, newPod, metav1.CreateOptions{})
    		if err != nil {
    			t.Fatalf("Run failed with error. Failed to create a new pod: <%v>", err)
    		}
    		extraPodsNum++
    		podInformer.GetIndexer().Add(newPod)
    	}
    
    	go adc.reconciler.Run(tCtx)
    	go adc.desiredStateOfWorldPopulator.Run(tCtx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    	}
    }
    
    // tryRegisterWithAPIServer makes an attempt to register the given node with
    // the API server, returning a boolean indicating whether the attempt was
    // successful.  If a node with the same name already exists, it reconciles the
    // value of the annotation for controller-managed attach-detach of attachable
    // persistent volumes for the node.
    func (kl *Kubelet) tryRegisterWithAPIServer(node *v1.Node) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/types.go

    	"k8s.io/kubernetes/pkg/kubelet/config"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kube/krt/bench_test.go

    	for _, service := range allServices {
    		if labels.Instance(service.Spec.Selector).Match(pod.Labels) {
    			services = append(services, service)
    		}
    	}
    
    	return services
    }
    
    func (l *legacy) Reconcile(key types.NamespacedName) error {
    	pod := l.pods.Get(key.Name, key.Namespace)
    	if pod == nil || pod.Status.PodIP == "" {
    		old := l.workloads[key]
    		if old != nil {
    			ev := krt.Event[Workload]{
    				Old:   old,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/zdsapi/zds.proto

    }
    
    // Delete a workload from the ztunnel. Ztunnel should shutdown the workload's proxy.
    message DelWorkload {
      string uid = 2;
    }
    
    // Let ztunnel know that a full snapshot was sent. Ztunnel should reconcile its internal state
    // and remove internal entries that were not sent.
    message SnapshotSent {
    }
    
    // Ztunnel ack message. If error is not empty, this is an error message.
    message Ack {
      string error = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pkg/kubelet/types/types.go

    limitations under the License.
    */
    
    package types
    
    import (
    	"net/http"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/cri-client/pkg/logs"
    )
    
    // TODO: Reconcile custom types in kubelet/types and this subpackage
    
    // HTTPDoer encapsulates http.Do functionality
    type HTTPDoer interface {
    	Do(req *http.Request) (*http.Response, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	}
    	dc.queue = controllers.NewQueue("gateway deployment",
    		controllers.WithReconciler(dc.Reconcile),
    		controllers.WithMaxAttempts(5))
    
    	// Set up a handler that will add the parent Gateway object onto the queue.
    	// The queue will only handle Gateway objects; if child resources (Service, etc) are updated we re-add
    	// the Gateway to the queue and reconcile the state of the world.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/server.go

    		}
    		s.GenericAPIServer.AddPostStartHookOrDie("peer-endpoint-reconciler-controller",
    			func(hookContext genericapiserver.PostStartHookContext) error {
    				peerEndpointCtrl.Start(hookContext.StopCh)
    				return nil
    			})
    		s.GenericAPIServer.AddPreShutdownHookOrDie("peer-endpoint-reconciler-controller",
    			func() error {
    				peerEndpointCtrl.Stop()
    				return nil
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top