Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pidStatus (0.27 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*core.PodStatus)(nil), (*v1.PodStatus)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_PodStatus_To_v1_PodStatus(a.(*core.PodStatus), b.(*v1.PodStatus), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// support namespace targeting then the result of setting this field is undefined.
    	// +optional
    	TargetContainerName string
    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system.
    type PodStatus struct {
    	// +optional
    	Phase PodPhase
    	// +optional
    	Conditions []PodCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.27.md

      - `PodSpec.Container.ResizePolicy` (new object) gives users control over how their containers are resized.
      - `PodStatus.Resize` status describes the state of a requested Pod resize.
      - `PodStatus.ResourcesAllocated` describes node resources allocated to Pod.
      - `PodStatus.Resources` describes node resources applied to running containers by CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    * Support GetLabelsForVolume in OpenStack Provider ([#58871](https://github.com/kubernetes/kubernetes/pull/58871), [@edisonxiang](https://github.com/edisonxiang))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - `GetPodQOS(pod *core.Pod)` function now returns the stored value from `PodStatus.QOSClass`, if set. To compute/evaluate the value of `QOSClass` from scratch, `ComputePodQOS(pod*core.Pod)` must be used. ([#119665](https://github.com/kubernetes/kubernetes/pull/119665), [@vinaykul](https://github.com/vinaykul))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    			DNSPolicy:     api.DNSDefault,
    			Containers:    []api.Container{{Name: "ctr", Image: "img", ImagePullPolicy: api.PullIfNotPresent, TerminationMessagePolicy: api.TerminationMessageReadFile}},
    		},
    		Status: api.PodStatus{
    			PodIPs: []api.PodIP{},
    		},
    	}
    
    	for _, ip := range ips {
    		p.Status.PodIPs = append(p.Status.PodIPs, api.PodIP{IP: ip})
    	}
    
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top