Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for busybox (0.17 sec)

  1. staging/src/k8s.io/cli-runtime/artifacts/oddly-named-file[x].yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: busybox
      labels:
        name: busybox
    spec:
      containers:
        - name: busybox
          image: busybox
          ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 02:41:21 UTC 2022
    - 181 bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	assert.NoError(t, err)
    
    	imageRef, err := fakeManager.PullImage(ctx, kubecontainer.ImageSpec{Image: "busybox"}, nil, nil)
    	assert.NoError(t, err)
    	assert.Equal(t, "busybox", imageRef)
    
    	images, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	assert.Equal(t, 1, len(images))
    	assert.Equal(t, images[0].RepoTags, []string{"busybox"})
    }
    
    func TestPullImageWithError(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    					Name:            "sc1",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					RestartPolicy:   &restartPolicy,
    				},
    				{
    					Name:            "sc2",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					RestartPolicy:   &restartPolicy,
    				},
    				{
    					Name:            "sc3",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		{"rc", &v1.ReplicationController{}, false, "../../artifacts/redis-master-controller.yaml", []string{"redis-master"}},
    		{"recursive-rc", &v1.ReplicationController{}, true, fmt.Sprintf("%s/recursive/rc", tmpDir), []string{"busybox0", "busybox1"}},
    		{"hardlink", &v1.Pod{}, false, fmt.Sprintf("%s/inode/hardlink/busybox-link.json", tmpDir), []string{"busybox0"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. samples/tcp-echo/README.md

        service/tcp-echo created
        deployment.apps/tcp-echo created
        ```
    
    1. Test by running the `nc` command from a `busybox` container from within the cluster.
    
        ```console
        $ kubectl run -i --rm --restart=Never dummy --image=busybox -- sh -c "echo world | nc tcp-echo 9000"
        hello world
        pod "dummy" deleted
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.StaticShAvailable])
        def "can execute generated Unix start script in BusyBox"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("static-sh")
    
            then:
            outputContains('Hello World!')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. hack/testdata/pod-restricted-runtime-default.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        run: target
      name: target
    spec:
      securityContext:
        seccompProfile: 
          type: RuntimeDefault
      containers:
      - image: busybox
        name: target
        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
            capabilities:
              drop: 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 437 bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux_test.go

    				UID:       "12345678",
    				Name:      "guaranteed-pod",
    				Namespace: "test",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Name:  "foo",
    						Image: "busybox",
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    								v1.ResourceMemory: resource.MustParse("128Mi"),
    								v1.ResourceCPU:    resource.MustParse("1"),
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. pkg/volume/util/recyclerclient/recycler_client_test.go

    				newEvent(v1.EventTypeNormal, "Successfully assigned recycler-for-podRecyclerSuccess to 127.0.0.1"),
    				newEvent(v1.EventTypeNormal, "Pulling image \"registry.k8s.io/busybox\""),
    				newEvent(v1.EventTypeNormal, "Successfully pulled image \"registry.k8s.io/busybox\""),
    				newEvent(v1.EventTypeNormal, "Created container with docker id 83d929aeac82"),
    				newEvent(v1.EventTypeNormal, "Started container with docker id 83d929aeac82"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. hack/testdata/pod-with-metadata-and-probes.yaml

        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
      initContainers:
      - image: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
Back to top