Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,673 for Runtimes (0.21 sec)

  1. pkg/kubelet/kuberuntime/helpers.go

    	if c == nil || c.Id == "" || c.Image == nil {
    		return nil, fmt.Errorf("unable to convert a nil pointer to a runtime container")
    	}
    
    	// Keep backwards compatibility to older runtimes, c.ImageId has been added in v1.30
    	imageID := c.ImageRef
    	if c.ImageId != "" {
    		imageID = c.ImageId
    	}
    
    	annotatedInfo := getContainerInfoFromAnnotations(c.Annotations)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	if err != nil {
    		klog.ErrorS(err, "Failed to list images")
    		return nil, err
    	}
    
    	for _, img := range allImages {
    		// Container runtimes may choose not to implement changes needed for KEP 4216. If
    		// the changes are not implemented by a container runtime, the exisiting behavior
    		// of not populating the runtimeHandler CRI field in ImageSpec struct is preserved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/host_stats_provider.go

    }
    
    // getPodEtcHostsStats gets status for pod etc hosts usage
    func (h hostStatsProvider) getPodEtcHostsStats(podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error) {
    	// Runtimes may not support etc hosts file (Windows with docker)
    	podEtcHostsPath := h.podEtcHostsPathFunc(podUID)
    	// Some pods have an explicit /etc/hosts mount and the Kubelet will not create an etc-hosts file for them
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	To troubleshoot, list all containers using your preferred container runtimes CLI.
    	Here is one example how you may list all running Kubernetes containers by using crictl:
    		- 'crictl --runtime-endpoint {{ .Socket }} ps -a | grep kube | grep -v pause'
    		Once you have found the failing container, you can inspect its logs with:
    		- 'crictl --runtime-endpoint {{ .Socket }} logs CONTAINERID'
    	`)))
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime.go

    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    	runtimeService, err := runtime.impl.NewRemoteRuntimeService(runtime.criSocket, defaultTimeout)
    	if err != nil {
    		return errors.Wrap(err, "failed to create new CRI runtime service")
    	}
    	runtime.runtimeService = runtimeService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/provider.go

    	if err != nil {
    		return false, err
    	}
    	// KEP Enhancement: DedicatedImageFs can mean either container or image fs are separate from root
    	// CAdvisor reports this a bit differently than Container runtimes
    	if device == rootFsInfo.Device {
    		imageFs, containerFs, err := p.ImageFsStats(ctx)
    		if err != nil {
    			return false, err
    		}
    		if !equalFileSystems(imageFs, containerFs) {
    			return true, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftcToolChain.java

            addDefaultTools(configurableToolChain);
            configureActions.execute(configurableToolChain);
    
            // TODO: this is an approximation as we know swift currently supports only 64-bit runtimes - eventually, we'll want to query for this
            if (!isCurrentArchitecture(targetPlatform)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/claiminfo.go

    func (info *ClaimInfo) setCDIDevices(pluginName string, cdiDevices []string) error {
    	// NOTE: Passing CDI device names as annotations is a temporary solution
    	// It will be removed after all runtimes are updated
    	// to get CDI device names from the ContainerConfig.CDIDevices field
    	annotations, err := cdi.GenerateAnnotations(info.ClaimUID, info.DriverName, cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/handler.go

    	// ListPodStatsAndUpdateCPUNanoCoreUsage returns the stats of all the
    	// containers managed by pods and force update the cpu usageNanoCores.
    	// This is a workaround for CRI runtimes that do not integrate with
    	// cadvisor. See https://github.com/kubernetes/kubernetes/issues/72788
    	// for more details.
    	ListPodStatsAndUpdateCPUNanoCoreUsage(ctx context.Context) ([]statsapi.PodStats, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/podcgroupns.go

    		`(?:[[:^punct:]]+[[:punct:]])*` +
    		// non-punctuation end of string, i.e., the container ID
    		`(?P<containerid>[[:^punct:]]+)$`),
    
    	// This regex applies for container runtimes, that won't put the PodUID into
    	// the cgroup name.
    	// Currently only cri-o in combination with kubeedge is known for this abnormally.
    	regexp.MustCompile(`` +
    		// intentionally empty poduid group
    		`(?P<poduid>)` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top