Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 313 for Pods (0.21 sec)

  1. pkg/proxy/endpoint.go

    	// always be true.
    	ready bool
    	// serving indicates whether this endpoint is ready regardless of its terminating state.
    	// For pods this is true if it has a ready status regardless of its deletion timestamp.
    	serving bool
    	// terminating indicates whether this endpoint is terminating.
    	// For pods this is true if it has a non-nil deletion timestamp.
    	terminating bool
    
    	// zoneHints represent the zone hints for the endpoint. This is based on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/node/v1alpha1/generated.proto

    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    message RuntimeClassSpec {
      // runtimeHandler specifies the underlying runtime and configuration that the
      // CRI implementation will use to handle pods of this class. The possible
      // values are specific to the node & CRI configuration.  It is assumed that
      // all handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    			case metav1.SchemeGroupVersion:
    				listMeta = list.(*metav1.PartialObjectMetadataList).ListMeta
    			}
    			if !reflect.DeepEqual(pods.ListMeta, listMeta) {
    				t.Errorf("unexpected list metadata: %v, expected: %v", listMeta, pods.ListMeta)
    			}
    		})
    	}
    }
    
    func TestWatchEncoderIdentifier(t *testing.T) {
    	eventFields := reflect.VisibleFields(reflect.TypeOf(metav1.WatchEvent{}))
    	if len(eventFields) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/ephemeral/controller.go

    	// The common indexer does some prefiltering for us by
    	// limiting the list to those pods which reference
    	// the PVC.
    	objs, err := ec.podIndexer.ByIndex(common.PodPVCIndex, fmt.Sprintf("%s/%s", pvc.Namespace, pvc.Name))
    	if err != nil {
    		runtime.HandleError(fmt.Errorf("listing pods from cache: %v", err))
    		return
    	}
    	for _, obj := range objs {
    		ec.enqueuePod(obj)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/apis/core/annotation_key_constants.go

    	// a pod compared to other pods belonging to the same ReplicaSet. Pods with lower
    	// deletion cost are preferred to be deleted before pods with higher deletion cost.
    	// Note that this is honored on a best-effort basis, and so it does not offer guarantees on
    	// pod deletion order.
    	// The implicit deletion cost for pods that don't set the annotation is 0, negative values are permitted.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    	pod := newPod(namespace)
    	err = admissiontesting.WithReinvocationTesting(t, handler).Admit(context.TODO(), admission.NewAttributesRecord(&pod, nil, api.Kind("Pod").WithVersion("version"), pod.Namespace, pod.Name, api.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil), nil)
    	if err != nil {
    		t.Errorf("unexpected error returned from admission handler")
    	}
    	if !hasCreateNamespaceAction(mockClient) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/queuesort/priority_sort.go

    var _ framework.QueueSortPlugin = &PrioritySort{}
    
    // Name returns name of the plugin.
    func (pl *PrioritySort) Name() string {
    	return Name
    }
    
    // Less is the function used by the activeQ heap algorithm to sort pods.
    // It sorts pods based on their priority. When priorities are equal, it uses
    // PodQueueInfo.timestamp.
    func (pl *PrioritySort) Less(pInfo1, pInfo2 *framework.QueuedPodInfo) bool {
    	p1 := corev1helpers.PodPriority(pInfo1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top