Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for Containers (0.27 sec)

  1. 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)
  2. cluster/gce/windows/k8s-node-setup.psm1

    function Start_Containerd {
      # Do the registration only if the containerd service does not exist.
      if ((Get-WMIObject -Class Win32_Service -Filter  "Name='containerd'") -eq $null) {
        Log-Output "Creating containerd service"
        & containerd.exe --register-service --log-file "${env:LOGS_DIR}/containerd.log"
      }
    
      Log-Output "Starting containerd service"
      Restart-Service containerd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    }
    
    func newPod() *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo-0",
    			Namespace: v1.NamespaceDefault,
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "nginx",
    					Image: "nginx",
    				},
    			},
    		},
    	}
    }
    
    func newPVC(name string) v1.PersistentVolumeClaim {
    	return v1.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{{Ports: []v1.ContainerPort{}}},
    		},
    		Status: v1.PodStatus{
    			Conditions: []v1.PodCondition{
    				{
    					Type:   v1.PodReady,
    					Status: v1.ConditionTrue,
    				},
    			},
    		},
    	}
    	if !isReady {
    		p.Status.Conditions[0].Status = v1.ConditionFalse
    	}
    	for j := 0; j < nPorts; j++ {
    		p.Spec.Containers[0].Ports = append(p.Spec.Containers[0].Ports,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The k8s lifecycle hooks definition (pod.spec.containers.lifecycle) for the proxy container.
      // More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
      k8s.io.api.core.v1.Lifecycle lifecycle = 36;
    
      // Controls if sidecar is injected at the front of the container list and blocks the start of the other containers until the proxy is ready
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: the-deployment
    spec:
      replicas: 3
      template:
        metadata:
          labels:
            deployment: hello
        spec:
          containers:
          - name: the-container
            image: monopole/hello:1
            command: ["/hello",
                      "--port=8080",
                      "--enableRiskyFeature=$(ENABLE_RISKY)"]
            ports:
            - containerPort: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    			}
    			req[v1.ResourceName(parts[0])] = parts[1]
    		}
    	}
    	podWrapper := st.MakePod().Name(objName).Namespace("node_info_cache_test").UID(objName).Node(nodeName).Containers([]v1.Container{
    		st.MakeContainer().Name("container").Image("pause").Resources(req).ContainerPort(ports).Obj(),
    	})
    	return podWrapper.Obj()
    }
    
    // checkImageStateSummary collect ImageStateSummary of image traverse nodes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "containers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "containers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "containers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top