Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for updateDir (0.12 sec)

  1. pilot/pkg/networking/core/cluster.go

    		prevCfg := proxy.PrevSidecarScope.DestinationRuleByName(updatedDr.Name, updatedDr.Namespace)
    		if prevCfg == nil {
    			log.Debugf("Prev DestinationRule form PrevSidecarScope is missing for %s/%s", updatedDr.Namespace, updatedDr.Name)
    			return nil, nil
    		}
    		dr := prevCfg.Spec.(*networking.DestinationRule)
    		services = append(services, proxy.SidecarScope.ServicesForHostname(host.Name(dr.Host))...)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	updateMin := 0
    	if set.Spec.UpdateStrategy.RollingUpdate != nil {
    		updateMin = int(*set.Spec.UpdateStrategy.RollingUpdate.Partition)
    	}
    	// we terminate the Pod with the largest ordinal that does not match the update revision.
    	for target := len(replicas) - 1; target >= updateMin; target-- {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_pod_control.go

    			}
    		}
    
    		// if the Pod is not dirty, do nothing
    		if consistent {
    			return nil
    		}
    
    		attemptedUpdate = true
    		// commit the update, retrying on conflicts
    
    		updateErr := spc.objectMgr.UpdatePod(pod)
    		if updateErr == nil {
    			return nil
    		}
    
    		if updated, err := spc.objectMgr.GetPod(set.Namespace, pod.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update.go

    		}
    		if currDS.Status.CollisionCount == nil {
    			currDS.Status.CollisionCount = new(int32)
    		}
    		*currDS.Status.CollisionCount++
    		_, updateErr := dsc.kubeClient.AppsV1().DaemonSets(ds.Namespace).UpdateStatus(ctx, currDS, metav1.UpdateOptions{})
    		if updateErr != nil {
    			return nil, updateErr
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	if needUpdate {
    		// PatchNodeStatus can update both node's status and labels or annotations
    		// Updating status by directly updating node does not work
    		_, _, updateErr := nodeutil.PatchNodeStatus(kubeClient.CoreV1(), types.NodeName(node.Name), originalNode, node)
    		return updateErr
    	}
    
    	return nil
    }
    
    // Guarantees the map is non-nil if no error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		options := patchToUpdateOptions(p.options)
    		updateObject, created, updateErr := p.restPatcher.Update(ctx, p.name, p.updatedObjectInfo, p.createValidation, p.updateValidation, p.forceAllowCreate, options)
    		wasCreated = created
    		return updateObject, updateErr
    	}
    	result, err := finisher.FinishRequest(ctx, func() (runtime.Object, error) {
    
    		result, err := requestFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption.go

    	// have a DeletionTimestamp).
    	// Once the timeout is reached, this controller attempts to set the status
    	// of the condition to False.
    	stalePodDisruptionTimeout = 2 * time.Minute
    )
    
    type updater func(context.Context, *policy.PodDisruptionBudget) error
    
    type DisruptionController struct {
    	kubeClient clientset.Interface
    	mapper     apimeta.RESTMapper
    
    	scaleNamespacer scaleclient.ScalesGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	}
    
    	// Create the cluster-local service registry.
    	e.clusterLocalServices = NewClusterLocalProvider(e)
    }
    
    func (e *Environment) InitNetworksManager(updater XDSUpdater) (err error) {
    	e.NetworkManager, err = NewNetworkManager(e, updater)
    	return
    }
    
    func (e *Environment) ClusterLocal() ClusterLocalProvider {
    	return e.clusterLocalServices
    }
    
    func (e *Environment) GetLedger() ledger.Ledger {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    			serviceName, oldServiceAccount, serviceAccounts)
    		return true
    	}
    
    	return false
    }
    
    // EndpointIndexUpdater is an updater that will keep an EndpointIndex in sync. This is intended for tests only.
    type EndpointIndexUpdater struct {
    	Index *EndpointIndex
    	// Optional; if set, we will trigger ConfigUpdates in response to EDS updates as appropriate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

            return redirect(getClass());
        }
    
        private void upgradeFrom13_0() {
            UpgradeUtil.addData(searchEngineClient, ".fess_config.scheduled_job", "label_updater",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top