Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 471 for Pods (0.18 sec)

  1. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    }
    
    func (dsw *desiredStateOfWorld) GetPodsWithErrors() []types.UniquePodName {
    	dsw.RLock()
    	defer dsw.RUnlock()
    
    	pods := make([]types.UniquePodName, 0, len(dsw.podErrors))
    	for podName := range dsw.podErrors {
    		pods = append(pods, podName)
    	}
    	return pods
    }
    
    func (dsw *desiredStateOfWorld) MarkVolumeAttachability(volumeName v1.UniqueVolumeName, attachable bool) {
    	dsw.Lock()
    	defer dsw.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    		{
    			name:            "None of the current objects match watchKey: sync with empty page",
    			watchKey:        "/pods/test/",
    			watcherMaxLimit: 1,
    			expectGetCount:  1,
    		},
    		{
    			name:             "The number of current objects is less than defaultWatcherMaxLimit: sync with one page",
    			watchKey:         "/pods/",
    			watcherMaxLimit:  3,
    			expectEventCount: 2,
    			expectGetCount:   1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    		t.Fatalf("unexpected started static pods: %s", cmp.Diff(e, a))
    	}
    	if e, a := map[string][]types.UID{}, podWorkers.waitingToStartStaticPodsByFullname; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected waiting static pods: %s", cmp.Diff(e, a))
    	}
    
    	// initiate a sync with all pods remaining
    	state := podWorkers.SyncKnownPods([]*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="0.6"} 1
          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="0.8"} 1
          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="1"} 1
          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="1.25"} 1
          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="1.5"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. pkg/scheduler/scheduler.go

    	durationToExpireAssumedPod time.Duration = 0
    )
    
    // ErrNoNodesAvailable is used to describe the error that no nodes available to schedule pods.
    var ErrNoNodesAvailable = fmt.Errorf("no nodes available to schedule pods")
    
    // Scheduler watches for new unscheduled pods. It attempts to find
    // nodes that they fit on and writes bindings back to the api server.
    type Scheduler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/serviceaccount/admission.go

    	}
    	if a.GetOperation() != admission.Create {
    		// we only mutate pods during create requests
    		return nil
    	}
    	pod := a.GetObject().(*api.Pod)
    
    	// Don't modify the spec of mirror pods.
    	// That makes the kubelet very angry and confused, and it immediately deletes the pod (because the spec doesn't match)
    	// That said, don't allow mirror pods to reference ServiceAccounts or SecretVolumeSources either
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. manifests/charts/gateway/values.yaml

      # A list of `Volumes` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumes: []
    
      # A list of `VolumeMounts` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumeMounts: []
    
      # Configure this to a higher priority class in order to make sure your Istio gateway pods
      # will not be killed because of low priority class.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	"k8s.io/utils/pointer"
    )
    
    func newTestCacherWithoutSyncing(s storage.Interface) (*Cacher, storage.Versioner, error) {
    	prefix := "pods"
    	config := Config{
    		Storage:        s,
    		Versioner:      storage.APIObjectVersioner{},
    		GroupResource:  schema.GroupResource{Resource: "pods"},
    		ResourcePrefix: prefix,
    		KeyFunc:        func(obj runtime.Object) (string, error) { return storage.NamespaceKeyFunc(prefix, obj) },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top