Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 431 for container1 (0.18 sec)

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

      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
      // When specified, it should match one the container or initContainer
      // names in the pod template.
      // +optional
      optional string containerName = 1;
    
      // Represents the relationship between the container exit code(s) and the
      // specified values. Containers completed with success (exit code 0) are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/types.go

    	FailSwapOn bool
    	// memorySwap configures swap memory available to container workloads.
    	// +featureGate=NodeSwap
    	// +optional
    	MemorySwap MemorySwapConfiguration
    	// A quantity defines the maximum size of the container log file before it is rotated. For example: "5Mi" or "256Ki".
    	ContainerLogMaxSize string
    	// Maximum number of container log files that can be present for a container.
    	ContainerLogMaxFiles int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/evented.go

    		klog.V(4).InfoS("Received Container Stopped Event", "event", event.String())
    	case runtimeapi.ContainerEventType_CONTAINER_CREATED_EVENT:
    		// We only need to update the pod status on container create.
    		// But we don't have to generate any PodLifeCycleEvent. Container creation related
    		// PodLifeCycleEvent is ignored by the existing Generic PLEG as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. build/root/Makefile

    # Build a release
    # Use the 'release-in-a-container' target to build the release when already in
    # a container vs. creating a new container to build in using the 'release'
    # target.  Useful for running in GCB.
    #
    # Example:
    #   make release
    #   make release-in-a-container
    endef
    .PHONY: release release-in-a-container
    ifeq ($(PRINT_HELP),y)
    release release-in-a-container:
    	echo "$$RELEASE_HELP_INFO"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pkg/scheduler/extender.go

    		return true
    	}
    	if h.hasManagedResources(pod.Spec.Containers) {
    		return true
    	}
    	if h.hasManagedResources(pod.Spec.InitContainers) {
    		return true
    	}
    	return false
    }
    
    func (h *HTTPExtender) hasManagedResources(containers []v1.Container) bool {
    	for i := range containers {
    		container := &containers[i]
    		for resourceName := range container.Resources.Requests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_gc_manager.go

    	}
    
    	// Make a set of images in use by containers.
    	for _, pod := range pods {
    		for _, container := range pod.Containers {
    			if !isRuntimeClassInImageCriAPIEnabled {
    				klog.V(5).InfoS("Container uses image", "pod", klog.KRef(pod.Namespace, pod.Name), "containerName", container.Name, "containerImage", container.Image, "imageID", container.ImageID, "imageRef", container.ImageRef)
    				imagesInUse.Insert(container.ImageID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers.go

    // (pod, container) tuple. The key should include the content of the
    // container, so that any change to the container generates a new key.
    func getStableKey(pod *v1.Pod, container *v1.Container) string {
    	hash := strconv.FormatUint(kubecontainer.HashContainer(container), 16)
    	return fmt.Sprintf("%s_%s_%s_%s_%s", pod.Name, pod.Namespace, string(pod.UID), container.Name, hash)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		}
    	}
    
    	// If all of the containers in a pod are HostProcess containers, set the pod's HostProcess field
    	// explicitly because the container runtime requires this information at sandbox creation time.
    	if kubecontainer.HasWindowsHostProcessContainer(pod) {
    		// At present Windows all containers in a Windows pod must be HostProcess containers
    		// and HostNetwork is required to be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. build/common.sh

          V=3 kube::log::status "Keeping container ${container}"
          continue
        fi
        if [[ -z "${2:-}" || "${container}" != "${2}" ]] ; then
          V=2 kube::log::status "Deleting container ${container}"
          kube::build::destroy_container "${container}"
        else
          V=3 kube::log::status "Keeping container ${container}"
        fi
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager.go

    	thresholdsMap := make(map[string]*resource.Quantity)
    	for _, container := range pod.Spec.Containers {
    		ephemeralLimit := container.Resources.Limits.StorageEphemeral()
    		if ephemeralLimit != nil && ephemeralLimit.Value() != 0 {
    			thresholdsMap[container.Name] = ephemeralLimit
    		}
    	}
    
    	for _, containerStat := range podStats.Containers {
    		containerUsed := diskUsage(containerStat.Logs)
    		if !*m.dedicatedImageFs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top