Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for containerB (0.31 sec)

  1. pkg/kubelet/container/runtime.go

    // ContainerReasonStatusUnknown indicates a container the status of the container cannot be determined.
    const ContainerReasonStatusUnknown string = "ContainerStatusUnknown"
    
    // Container provides the runtime information for a container, such as ID, hash,
    // state of the container.
    type Container struct {
    	// The ID of the container, used by the container runtime to identify
    	// a container.
    	ID ContainerID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin.go

    	Kubernetes      Kubernetes `json:"kubernetes"`
    }
    
    // K8sArgs is the valid CNI_ARGS used for Kubernetes
    // The field names need to match exact keys in containerd args for unmarshalling
    // https://github.com/containerd/containerd/blob/ced9b18c231a28990617bc0a4b8ce2e81ee2ffa1/pkg/cri/server/sandbox_run.go#L526-L532
    type K8sArgs struct {
    	types.CommonArgs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @gjkim42 @SergeyKanzhelev @matthyx @tzneal
    	// kep: http://kep.k8s.io/753
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Introduces sidecar containers, a new type of init container that starts
    	// before other containers but remains running for the full duration of the
    	// pod's lifecycle and will not block pod termination.
    	SidecarContainers featuregate.Feature = "SidecarContainers"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/qos_container_manager_linux.go

    	cm := m.cgroupManager
    	rootContainer := m.cgroupRoot
    
    	if err := cm.Validate(rootContainer); err != nil {
    		return fmt.Errorf("error validating root container %v : %w", rootContainer, err)
    	}
    
    	// Top level for Qos containers are created only for Burstable
    	// and Best Effort classes
    	qosClasses := map[v1.PodQOSClass]CgroupName{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    	res.Add(requests)
    	return res, non0CPU, non0Mem
    }
    
    // updateUsedPorts updates the UsedPorts of NodeInfo.
    func (n *NodeInfo) updateUsedPorts(pod *v1.Pod, add bool) {
    	for _, container := range pod.Spec.Containers {
    		for _, podPort := range container.Ports {
    			if add {
    				n.UsedPorts.Add(podPort.HostIP, string(podPort.Protocol), podPort.HostPort)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    	}, nil
    }
    
    // computePodResourceRequest returns a framework.Resource that covers the largest
    // width in each resource dimension. Because init-containers run sequentially, we collect
    // the max in each dimension iteratively. In contrast, we sum the resource vectors for
    // regular containers since they run simultaneously.
    //
    // # The resources defined for Overhead should be added to the calculated Resource request sum
    //
    // Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                            mojo.setRealm(pluginRealm);
                            container.addComponentDescriptor(mojo);
                        }
                    }
                }
    
                ((DefaultPlexusContainer) container)
                        .discoverComponents(
                                pluginRealm,
                                new SessionScopeModule(container.lookup(SessionScope.class)),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun <T : Any?> container(type: Class<T>): NamedDomainObjectContainer<T> {
                onAccess("container")
                return delegate.container(type)
            }
    
            override fun <T : Any?> container(type: Class<T>, factory: NamedDomainObjectFactory<T>): NamedDomainObjectContainer<T> {
                onAccess("container")
                return delegate.container(type, factory)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (pod) (\n  container_memory_working_set_bytes{container=\"discovery\", pod=~\"istiod-.*\"}\n)",
                   "legendFormat": "Container ({{pod}})"
                },
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    		"The name of the istio init container (will crash-loop if CNI is not configured for the pod)")
    	registerStringParameter(constants.RepairInitTerminationMsg, "",
    		"The expected termination message for the init container when crash-looping because of CNI misconfiguration")
    	registerIntegerParameter(constants.RepairInitExitCode, iptables.ValidationErrorCode,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top