Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for createdPod (0.3 sec)

  1. cmd/kubeadm/app/phases/upgrade/health.go

    		createdJob, err := client.BatchV1().Jobs(ns).Create(context.Background(), job, metav1.CreateOptions{})
    		if err != nil {
    			klog.V(2).Infof("Could not create a Job with the prefix %q in the namespace %q, retrying: %v", prefix, ns, err)
    			lastError = err
    			return false, nil
    		}
    
    		jobName = createdJob.Name
    		return true, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_pod_control.go

    // with a clientset for writes and listers for reads; for tests we provide stubs.
    type StatefulPodControlObjectManager interface {
    	CreatePod(ctx context.Context, pod *v1.Pod) error
    	GetPod(namespace, podName string) (*v1.Pod, error)
    	UpdatePod(pod *v1.Pod) error
    	DeletePod(pod *v1.Pod) error
    	CreateClaim(claim *v1.PersistentVolumeClaim) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    Your build scripts and plugins configure this dependency graph.
    
    For example, if your project tasks include `build`, `assemble`, `createDocs`, your build script(s) can ensure that they are executed in the order `build` -> `assemble` -> `createDoc`.
    
    == Task Graphs
    
    Gradle builds the task graph *before* executing any task.
    
    Across all projects in the build, tasks form a http://en.wikipedia.org/wiki/Directed_acyclic_graph[Directed Acyclic Graph^] (DAG).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    		revisionInformer.Informer().GetIndexer(),
    		newRequestTracker(0, nil, 0),
    		newRequestTracker(0, nil, 0),
    		newRequestTracker(0, nil, 0),
    	}
    }
    
    func (om *fakeObjectManager) CreatePod(ctx context.Context, pod *v1.Pod) error {
    	defer om.createPodTracker.trackParallelRequests()
    	if err := om.createPodTracker.incWithOptionalError(); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top