Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for Reconciled (0.16 sec)

  1. operator/pkg/helmreconciler/prune.go

    			continue
    		}
    		usList = append(usList, objects)
    	}
    
    	return usList, nil
    }
    
    // getIstioOperatorCR is a helper function to get IstioOperator CR during purge,
    // otherwise the resources would be reconciled back later if there is in-cluster operator deployment.
    // And it is needed to remove the IstioOperator CRD.
    func (h *HelmReconciler) getIstioOperatorCR() *unstructured.UnstructuredList {
    	iopGVR := iopv1alpha1.IstioOperatorGVR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2.go

    	for _, job := range jobList {
    		// If it has a ControllerRef, that's all that matters.
    		if controllerRef := metav1.GetControllerOf(job); controllerRef != nil && controllerRef.Name == cronJob.Name {
    			// this job is needs to be reconciled
    			jobsToBeReconciled = append(jobsToBeReconciled, job)
    		}
    	}
    	return jobsToBeReconciled, nil
    }
    
    // When a job is created, enqueue the controller that manages it and update it's expectations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler_test.go

    // Test Helpers
    
    func newReconciler(ctx context.Context, client *fake.Clientset, maxEndpointsPerSubset int32) *reconciler {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	recorder := broadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: "endpoint-slice-mirroring-controller"})
    
    	return &reconciler{
    		client:                client,
    		maxEndpointsPerSubset: maxEndpointsPerSubset,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world with
    // the actual state of the world by triggering attach detach operations.
    // Note: This is distinct from the Reconciler implemented by the kubelet volume
    // manager. This reconciles state for the attach/detach controller. That
    // reconciles state for the kubelet volume manager.
    type Reconciler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/reconciler.go

    	// as the efficiency of EndpointSlice endpoints distribution
    	metricsCache *metrics.Cache
    }
    
    // reconcile takes an Endpoints resource and ensures that corresponding
    // EndpointSlices exist. It creates, updates, or deletes EndpointSlices to
    // ensure the desired set of addresses are represented by EndpointSlices.
    func (r *reconciler) reconcile(logger klog.Logger, endpoints *corev1.Endpoints, existingSlices []*discovery.EndpointSlice) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/reconciler.go

    	for _, parent := range ComponentDependencies {
    		for _, child := range parent {
    			ret[child] = make(chan struct{}, 1)
    		}
    	}
    	return ret
    }
    
    // Reconcile reconciles the associated resources.
    func (h *HelmReconciler) Reconcile() (*v1alpha1.InstallStatus, error) {
    	if err := util.CreateNamespace(h.kubeClient.Kube(), istioV1Alpha1.Namespace(h.iop.Spec), h.networkName(), h.opts.DryRun); err != nil {
    		return nil, err
    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/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	if err != nil {
    		scope.Errorf("Error during reconcile. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	if err := reconciler.SetStatusBegin(); err != nil {
    		scope.Errorf("Error during reconcile, failed to update status to Begin. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	status, err := reconciler.Reconcile()
    	if err != nil {
    		scope.Errorf("Error during reconcile: %s", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	"k8s.io/mount-utils"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world
    // with the actual state of the world by triggering attach, detach, mount, and
    // unmount operations.
    // Note: This is distinct from the Reconciler implemented by the attach/detach
    // controller. This reconciles state for the kubelet volume manager. That
    // reconciles state for the attach/detach controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/kubelet/config/config.go

    			// no ADD or UPDATE or DELETE pods from the source. This signals kubelet that
    			// the source is ready.
    			s.updates <- *adds
    		}
    		// Only add reconcile support here, because kubelet doesn't support Snapshot update now.
    		if len(reconciles.Pods) > 0 {
    			s.updates <- *reconciles
    		}
    
    	case PodConfigNotificationSnapshotAndUpdates:
    		if len(removes.Pods) > 0 || len(adds.Pods) > 0 || firstSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest_shared_test.go

    		return nil, err
    	}
    
    	iop.Spec.InstallPackagePath = string(chartSource)
    
    	reconciler, err := helmreconciler.NewHelmReconciler(testClient, c, iop, opts)
    	if err != nil {
    		return nil, err
    	}
    	if err := fakeInstallOperator(reconciler, chartSource); err != nil {
    		return nil, err
    	}
    
    	if _, err := reconciler.Reconcile(); err != nil {
    		return nil, err
    	}
    
    	return NewObjectSet(getAllIstioObjects()), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top