Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for busybox (0.3 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		makeTestPod("foo1", "new", "1234", []v1.Container{
    			makeTestContainer("bar1", "busybox"),
    			makeTestContainer("bar2", "busybox"),
    		}),
    		makeTestPod("foo2", "new", "5678", []v1.Container{
    			makeTestContainer("bar3", "busybox"),
    		}),
    		makeTestPod("deleted", "new", "9012", []v1.Container{
    			makeTestContainer("bar4", "busybox"),
    		}),
    	}
    
    	for _, test := range []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/security_context_others_test.go

    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					Command:         []string{"testCommand"},
    					WorkingDir:      "testWorkingDir",
    				},
    			},
    		},
    	}
    
    	rootUser := int64(0)
    	anyUser := int64(1000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					Command:         []string{"testCommand"},
    					WorkingDir:      "testWorkingDir",
    					SecurityContext: &v1.SecurityContext{
    						RunAsUser:  &runAsUser,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    				},
    			},
    		},
    	}
    
    	// Create fake sandbox and container
    	_, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    	assert.Equal(t, len(fakeContainers), 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    spec:
      selector:
        matchLabels:
          k8s-app: agent
      template:
        metadata:
          labels:
            k8s-app: agent
        spec:
          containers:
            - image: registry.k8s.io/busybox
              name: agent
    `,
    			expectedResult: nil,
    			expectedError:  strptr("unable to decode tracing configuration data: no kind \"DaemonSet\" is registered for version \"apps/v1\" in scheme"),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. cluster/addons/addon-manager/CHANGELOG.md

     - Update kubectl to v1.6.0-alpha.1 for supporting optional ConfigMap.
    
    ### Version 6.3 (Fri January 27 2017 Lucas Käldström <******@****.***>)
     - Updated the arm base image to `armhf/busybox` and now using qemu v2.7 for emulation.
    
    ### Version 6.2 (Thu January 12 2017 Zihong Zheng <******@****.***>)
     - Update kubectl to the stable version.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/volume/util/util_test.go

    kind: Pod
    metadata:
      name: testpod
    spec:
      containers:
        - image: registry.k8s.io/busybox
    `,
    			false,
    		},
    
    		{
    			"json",
    			`
    {
      "apiVersion": "v1",
      "kind": "Pod",
      "metadata": {
        "name": "testpod"
      },
      "spec": {
        "containers": [
          {
            "image": "registry.k8s.io/busybox"
          }
        ]
      }
    }`,
    			false,
    		},
    
    		{
    			"invalid pod",
    			`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/cronjob.yaml.injected

              creationTimestamp: null
            spec:
              containers:
              - args:
                - /bin/sh
                - -c
                - date; echo Hello from the Kubernetes cluster
                image: busybox
                name: hello
                resources: {}
              - args:
                - proxy
                - sidecar
                - --domain
                - $(POD_NAMESPACE).svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					Command:         []string{"testCommand"},
    					WorkingDir:      "testWorkingDir",
    					Resources:       resources,
    					SecurityContext: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_manager.go

    		// of using dockerref.WithTag(named, ...) because that would cause the
    		// image to be fully qualified as docker.io/$name if it's a short name
    		// (e.g. just busybox). We don't want that to happen to keep the CRI
    		// agnostic wrt image names and default hostnames.
    		image = image + ":" + tag
    	}
    	return image, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top