Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for reconciling (0.28 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	klog.InfoS("Starting CPU manager", "policy", m.policy.Name())
    	klog.InfoS("Reconciling", "reconcilePeriod", m.reconcilePeriod)
    	m.sourcesReady = sourcesReady
    	m.activePods = activePods
    	m.podStatusProvider = podStatusProvider
    	m.containerRuntime = containerRuntime
    	m.containerMap = initialContainers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  2. pkg/controller/deployment/sync.go

    	if err != nil {
    		return err
    	}
    
    	allRSs := append(oldRSs, newRS)
    	return dc.syncDeploymentStatus(ctx, allRSs, newRS, d)
    }
    
    // sync is responsible for reconciling deployments on scaling events or when they
    // are paused.
    func (dc *DeploymentController) sync(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. pkg/controller/deployment/deployment_controller.go

    			d.Status.ObservedGeneration = d.Generation
    			dc.client.AppsV1().Deployments(d.Namespace).UpdateStatus(ctx, d, metav1.UpdateOptions{})
    		}
    		return nil
    	}
    
    	// List ReplicaSets owned by this Deployment, while reconciling ControllerRef
    	// through adoption/orphaning.
    	rsList, err := dc.getReplicaSetsForDeployment(ctx, d)
    	if err != nil {
    		return err
    	}
    	// List all Pods owned by this Deployment, grouped by their ReplicaSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if !shouldHandle {
    		log.Debugf("skipping gateway which is managed by controller version %v", existingControllerVersion)
    		return nil
    	}
    	log.Info("reconciling")
    
    	var ns *corev1.Namespace
    	if d.namespaces != nil {
    		ns = d.namespaces.Get(gw.Namespace, "")
    	}
    	proxyUID, proxyGID := inject.GetProxyIDs(ns)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2.go

    	requeueAfter, updateStatusAfterSync, syncErr := jm.syncCronJob(ctx, cronJobCopy, jobsToBeReconciled)
    	if syncErr != nil {
    		logger.V(2).Info("Error reconciling cronjob", "cronjob", klog.KObj(cronJob), "err", syncErr)
    	}
    
    	// Update the CronJob if needed
    	if updateStatusAfterCleanup || updateStatusAfterSync {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    "managedBy":               "ManagedBy field indicates the controller that manages a Job. The k8s Job controller reconciles jobs which don't have this field at all or the field value is the reserved string `kubernetes.io/job-controller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/generated.proto

      // controller reconciles jobs which don't have this field at all or the field
      // value is the reserved string `kubernetes.io/job-controller`, but skips
      // reconciling Jobs with a custom value for this field.
      // The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
      // all characters before the first "/" must be a valid subdomain as defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_test.go

    	t.Helper()
    	logger, _ := ktesting.NewTestContext(t)
    	err := r.reconcile(logger, endpoints, existingSlices)
    	if err != nil {
    		t.Fatalf("Expected no error reconciling Endpoint Slices, got: %v", err)
    	}
    }
    
    // Metrics helpers
    
    type expectedMetrics struct {
    	desiredSlices    int
    	actualSlices     int
    	desiredEndpoints int
    	addedPerSync     int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    	// controller reconciles jobs which don't have this field at all or the field
    	// value is the reserved string `kubernetes.io/job-controller`, but skips
    	// reconciling Jobs with a custom value for this field.
    	// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
    	// all characters before the first "/" must be a valid subdomain as defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	// controller reconciles jobs which don't have this field at all or the field
    	// value is the reserved string `kubernetes.io/job-controller`, but skips
    	// reconciling Jobs with a custom value for this field.
    	// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
    	// all characters before the first "/" must be a valid subdomain as defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top