Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 690 for ContainerT (0.17 sec)

  1. cluster/log-dump/log-dump.sh

    }
    
    # Execute a command in container $2 on node $1.
    # Uses docker because the container may not ordinarily permit direct execution.
    function run-in-docker-container() {
      local node_name="$1"
      local container="$2"
      shift 2
      log-dump-ssh "${node_name}" "docker exec \"\$(docker ps -f label=io.kubernetes.container.name=${container} --format \"{{.ID}}\")\" $*"
    }
    
    function dump_masters() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    			Labels:            map[string]string{"foo": "bar"},
    			DeletionTimestamp: deletionTimestamp,
    			ResourceVersion:   fmt.Sprint(n),
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{{
    				Name: "container-1",
    			}},
    			NodeName: "node-1",
    		},
    		Status: v1.PodStatus{
    			PodIP: fmt.Sprintf("1.2.3.%d", 4+n),
    			PodIPs: []v1.PodIP{{
    				IP: fmt.Sprintf("1.2.3.%d", 4+n),
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. cluster/gce/manifests/konnectivity-server.yaml

        {{ run_as_group }}
        {{ supplemental_groups }}
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: konnectivity-server-container
        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
            {{ drop_capabilities }}
        image: registry.k8s.io/kas-network-proxy/proxy-server:v0.30.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers_linux_test.go

    		},
    		{
    			description:   "container seccomp profile set to SeccompProfileTypeLocalhost with empty LocalhostProfile returns error",
    			containerSc:   &v1.SecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeLocalhost}},
    			expectedError: "localhostProfile must be set if seccompProfile type is Localhost.",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    			}
    			lim := mungeCpuMemResources(container.Resources.Limits, oldPod.Spec.Containers[ix].Resources.Limits)
    			req := mungeCpuMemResources(container.Resources.Requests, oldPod.Spec.Containers[ix].Resources.Requests)
    			container.Resources = core.ResourceRequirements{Limits: lim, Requests: req}
    		}
    		newContainers = append(newContainers, container)
    	}
    	mungedPodSpec.Containers = newContainers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    	getPodWithOverhead := func() *v1.Pod {
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "bar",
    				Namespace: "new",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    								v1.ResourceMemory: resource.MustParse("128Mi"),
    								v1.ResourceCPU:    resource.MustParse("2"),
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top