Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 119 for pidStatus (0.6 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    }
    
    func baseNamespacedPodUpdated(podName, namespace string) *example.Pod {
    	return &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: podName, Namespace: namespace},
    		Status:     example.PodStatus{Phase: "Running"},
    	}
    }
    
    func baseNamespacedPodAssigned(podName, namespace, nodeName string) *example.Pod {
    	return &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: podName, Namespace: namespace},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated PodResourceClaim resourceClaims = 39;
    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system, especially if the node that hosts the pod cannot contact the control
    // plane.
    message PodStatus {
      // The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    			reportedCPURequest := resource.MustParse("1.0")
    			if specifiedCPURequests {
    				reportedCPURequest = tc.reportedCPURequests[i]
    			}
    
    			pod := v1.Pod{
    				Status: v1.PodStatus{
    					Phase: podPhase,
    					Conditions: []v1.PodCondition{
    						{
    							Type:               v1.PodReady,
    							Status:             podReadiness,
    							LastTransitionTime: podStartTime,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	TargetContainerName string `json:"targetContainerName,omitempty" protobuf:"bytes,2,opt,name=targetContainerName"`
    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system, especially if the node that hosts the pod cannot contact the control
    // plane.
    type PodStatus struct {
    	// The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set_test.go

    			Name:            name,
    			Namespace:       rs.Namespace,
    			Labels:          rs.Spec.Selector.MatchLabels,
    			OwnerReferences: []metav1.OwnerReference{controllerReference},
    		},
    		Status: v1.PodStatus{Phase: status, Conditions: conditions},
    	}
    }
    
    // create count pods with the given phase for the given ReplicaSet (same selectors and namespace), and add them to the store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    // effect on scheduling.
    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    	return !reflect.DeepEqual(strip(oldPod), strip(newPod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"resourceClaimStatuses":      "Status of resource claims.",
    }
    
    func (PodStatus) SwaggerDoc() map[string]string {
    	return map_PodStatus
    }
    
    var map_PodStatusResult = map[string]string{
    	"":         "PodStatusResult is a wrapper for PodStatus returned by kubelet that can be encode/decoded",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_PodSpec proto.InternalMessageInfo
    
    func (m *PodStatus) Reset()      { *m = PodStatus{} }
    func (*PodStatus) ProtoMessage() {}
    func (*PodStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{150}
    }
    func (m *PodStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PodStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "required": [
            "containers"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.PodStatus": {
          "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.",
          "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    	testpod := newPod("testpod", 1, []v1.Container{
    		newContainer("testcontainer", newResourceList("", "200Mi", ""), newResourceList("", "", "")),
    	}, nil)
    	testpod.Status = v1.PodStatus{
    		ContainerStatuses: []v1.ContainerStatus{
    			{
    				Name:               "testcontainer",
    				AllocatedResources: newResourceList("", "100Mi", ""),
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top