Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 592 for Pods (0.04 sec)

  1. pkg/controller/daemon/update_test.go

    	manager.dsStore.Update(ds)
    
    	// all old pods are unavailable so should be surged
    	manager.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(100, 0))
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 5, 0, 0)
    
    	// waiting for pods to go ready, old pods are deleted
    	manager.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(200, 0))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // can have their pods stopped for an update at any given time. The update
      // starts by stopping at most 30% of those DaemonSet pods and then brings
      // up new DaemonSet pods in their place. Once the new pods are available,
      // it then proceeds onto other DaemonSet pods, thus ensuring that at least
      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers_test.go

    				extensionsapiv1beta1.SchemeGroupVersion.WithResource("daemonsets"):  false,
    				appsv1.SchemeGroupVersion.WithResource("deployments"):               true,
    				apiv1.SchemeGroupVersion.WithResource("pods"):                       true,
    			},
    			err: false,
    		},
    		{
    			name: "version-enabled-by-runtimeConfig-override",
    			runtimeConfig: map[string]string{
    				"apps/v1": "",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    		isMutating  bool
    		want        string
    	}{
    		{
    			desc: "list pods",
    			request: &http.Request{
    				Method: "GET",
    				URL: &url.URL{
    					RawPath: "/api/v1/pods",
    				},
    			},
    			requestInfo: &request.RequestInfo{
    				Verb:              "list",
    				APIGroup:          "",
    				APIVersion:        "v1",
    				Resource:          "pods",
    				IsResourceRequest: true,
    			},
    			isMutating: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	}
    
    	adc := adcObj.(*attachDetachController)
    
    	pods, err := fakeKubeClient.CoreV1().Pods(v1.NamespaceAll).List(tCtx, metav1.ListOptions{})
    	if err != nil {
    		t.Fatalf("Run failed with error. Expected: <no error> Actual: %v", err)
    	}
    
    	for _, pod := range pods.Items {
    		podToAdd := pod
    		podInformer.GetIndexer().Add(&podToAdd)
    		podsNum++
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/cluster_test.go

    		nodeName         string
    		pods             []testresources.FakeStaticPod
    		clientSetup      func(*clientsetfake.Clientset)
    		expectedEndpoint string
    		expectedErr      bool
    	}{
    		{
    			name:        "no pods",
    			nodeName:    nodeName,
    			expectedErr: true,
    		},
    		{
    			name:     "exactly one pod with annotation",
    			nodeName: nodeName,
    			pods: []testresources.FakeStaticPod{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1/generated.proto

      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
      // a Job is created with suspend set to true, no Pods are created by the Job
      // controller. If a Job is suspended after creation (i.e. the flag goes from
      // false to true), the Job controller will delete all active Pods associated
      // with this Job. Users must design their workload to gracefully handle this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/kubelet/config/http_test.go

    	if len(headerVal) != 1 || headerVal[0] != "Google" {
    		t.Errorf("Header missing expected entry %v. Got %v", header, fakeHandler.RequestReceived.Header)
    	}
    	if len(update.Pods) != 1 {
    		t.Errorf("Received wrong number of pods, expected one: %v", update.Pods)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/pods_test.go

    	}{
    		{
    			name: "nil case",
    		},
    		{
    			name: "all pods in running state",
    			objs: []runtime.Object{
    				makePod("p1", "", cpu1, api.PodRunning),
    				makePod("p2", "", cpu1, api.PodRunning),
    			},
    			want: corev1.ResourceList{
    				corev1.ResourcePods:               resource.MustParse("2"),
    				corev1.ResourceName("count/pods"): resource.MustParse("2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/resource_quota_controller_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	pods := schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
    	secrets := schema.GroupVersionResource{Group: "", Version: "v1", Resource: "secrets"}
    	deployments := schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"}
    	listersForResourceConfig := map[schema.GroupVersionResource]cache.GenericLister{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top