Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for containerImage (0.17 sec)

  1. pkg/kubelet/nodestatus/setters_test.go

    	// copy the imageList, we do not want to mutate it in-place and accidentally edit a test case
    	images := make([]kubecontainer.Image, len(imageList))
    	copy(images, imageList)
    	// sort images by size
    	sort.Sort(sliceutils.ByImageSize(images))
    	// convert to []v1.ContainerImage and truncate the list of names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Capacity: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Images: []corev1.ContainerImage{
    				{
    					Names: []string{"test"},
    				},
    			},
    			Conditions: []corev1.NodeCondition{
    				{
    					Type: corev1.NodeMemoryPressure,
    				},
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. 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)
Back to top