Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for containerImage (0.58 sec)

  1. pkg/kubelet/eviction/helpers.go

    					containers = append(containers, container.Name)
    					containerUsage = append(containerUsage, usage.String())
    				}
    			}
    		}
    	}
    	annotations[OffendingContainersKey] = strings.Join(containers, ",")
    	annotations[OffendingContainersUsageKey] = strings.Join(containerUsage, ",")
    	annotations[StarvedResourceKey] = string(resourceToReclaim)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    						{Name: "init1", Image: "initimage"},
    						{Name: "sidecar1", Image: "sidecarimage", RestartPolicy: ptr.To(api.ContainerRestartPolicyAlways)},
    					},
    					Containers: []api.Container{{Name: "container1", Image: "containerimage"}},
    				},
    				Status: api.PodStatus{
    					Phase: "Running",
    					InitContainerStatuses: []api.ContainerStatus{
    						{Name: "initinvalid"},
    						{Name: "init1"},
    						{Name: "sidecar1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	NodeInfo NodeSystemInfo `json:"nodeInfo,omitempty" protobuf:"bytes,7,opt,name=nodeInfo"`
    	// List of container images on this node
    	// +optional
    	// +listType=atomic
    	Images []ContainerImage `json:"images,omitempty" protobuf:"bytes,8,rep,name=images"`
    	// List of attachable volumes in use (mounted) by the node.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/pods.go

    	requests := container.Resources.Requests
    	limits := container.Resources.Limits
    	containerUsage := podComputeUsageHelper(requests, limits)
    	containerSet := quota.ToSet(quota.ResourceNames(containerUsage))
    	if !containerSet.Equal(requiredSet) {
    		if difference := requiredSet.Difference(containerSet); difference.Len() != 0 {
    			for _, diff := range difference.List() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            }
          },
          "required": [
            "name"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ContainerImage": {
          "description": "Describe a container image",
          "properties": {
            "names": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"names":     "Names by which this image is known. e.g. [\"kubernetes.example/hyperkube:v1.0.7\", \"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7\"]",
    	"sizeBytes": "The size of the image in bytes.",
    }
    
    func (ContainerImage) SwaggerDoc() map[string]string {
    	return map_ContainerImage
    }
    
    var map_ContainerPort = map[string]string{
    	"":              "ContainerPort represents a network port in a single container.",
    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. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "name"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.ContainerImage": {
            "description": "Describe a container image",
            "properties": {
              "names": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/core/v1.Container":                                                                          schema_k8sio_api_core_v1_Container(ref),
    		"k8s.io/api/core/v1.ContainerImage":                                                                     schema_k8sio_api_core_v1_ContainerImage(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "required": [
            "name"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ContainerImage": {
          "description": "Describe a container image",
          "properties": {
            "names": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              "type": "string"
            }
          },
          "required": [
            "name"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ContainerImage": {
          "description": "Describe a container image",
          "properties": {
            "names": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top