Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for containerStatus (0.19 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      optional string reason = 1;
    
      // Message regarding why the container is not yet running.
      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	InitContainerStatuses []ContainerStatus
    	// The list has one entry per app container in the manifest.
    	// +optional
    	ContainerStatuses []ContainerStatus
    
    	// Status for any ephemeral containers that have run in this pod.
    	// +optional
    	EphemeralContainerStatuses []ContainerStatus
    
    	// Status of resources resize desired for pod's containers.
    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. 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", ""),
    			},
    		},
    	}
    	testpodMemory := resource.MustParse("150Mi")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      optional string reason = 1;
    
      // Message regarding why the container is not yet running.
      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// Details about a terminated container
    	// +optional
    	Terminated *ContainerStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`
    }
    
    // ContainerStatus contains details for the current status of this container.
    type ContainerStatus struct {
    	// Name is a DNS_LABEL representing the unique name of the container.
    	// Each container in a pod must have a unique name across all container types.
    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. pkg/kubelet/server/stats/summary_test.go

    	v := &statsapi.FsStats{}
    	f.Fuzz(v)
    	return v
    }
    
    func getContainerStats() *statsapi.ContainerStats {
    	f := fuzz.New().NilChance(0)
    	v := &statsapi.ContainerStats{}
    	f.Fuzz(v)
    	return v
    }
    func getVolumeCPUAndMemoryStats() *statsapi.ContainerStats {
    	f := fuzz.New().NilChance(0)
    	v := &statsapi.ContainerStats{}
    	f.Fuzz(&v.Name)
    	f.Fuzz(&v.StartTime)
    	f.Fuzz(v.CPU)
    	f.Fuzz(v.Memory)
    	return v
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/summary_windows_test.go

    		StartTime:  metav1.NewTime(time.Now()),
    		Containers: []statsapi.ContainerStats{*containerStats},
    		CPU:        containerStats.CPU,
    		Memory:     containerStats.Memory,
    	}
    
    	return &podStats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    	"k8s.io/kubernetes/pkg/kubelet/kuberuntime"
    	"k8s.io/kubernetes/pkg/volume"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    type fakeNetworkStatsProvider struct {
    	containers []containerStats
    }
    
    type containerStats struct {
    	container hcsshim.ContainerProperties
    	hcsStats  []hcsshim.NetworkStats
    }
    
    func (s fakeNetworkStatsProvider) GetHNSEndpointStats(endpointName string) (*hcsshim.HNSEndpointStats, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    			summary: &statsapi.Summary{
    				Pods: []statsapi.PodStats{
    					{
    						PodRef: statsapi.PodReference{
    							Name:      "pod_a",
    							Namespace: "namespace_a",
    						},
    						Containers: []statsapi.ContainerStats{
    							{
    								Name:      "container_a",
    								StartTime: metav1.NewTime(staticTimestamp.Add(-30 * time.Second)),
    								CPU: &statsapi.CPUStats{
    									Time:                 testTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  10. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    }
    
    // GetCgroupCPUAndMemoryStats mocks base method.
    func (m *MockProvider) GetCgroupCPUAndMemoryStats(cgroupName string, updateStats bool) (*v1alpha1.ContainerStats, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupCPUAndMemoryStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetCgroupCPUAndMemoryStats indicates an expected call of GetCgroupCPUAndMemoryStats.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top