Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for ephemeral_container (0.32 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// containers cannot be specified on pod creation.
    	for _, idx := range podContainerChanges.EphemeralContainersToStart {
    		start(ctx, "ephemeral container", metrics.EphemeralContainer, ephemeralContainerStartSpec(&pod.Spec.EphemeralContainers[idx]))
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.SidecarContainers) {
    		// Step 6: start the init container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    					Containers: []api.Container{
    						{Name: "container1"},
    						{Name: "container2"},
    					},
    					InitContainers: []api.Container{
    						{Name: "initcontainer1"},
    					},
    					EphemeralContainers: []api.EphemeralContainer{
    						{EphemeralContainerCommon: api.EphemeralContainerCommon{Name: "debugger"}},
    					},
    				},
    				Status: api.PodStatus{},
    			},
    			opts:              &api.PodLogOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service":   `""`,
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.PeriodSeconds":               "10",
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.SuccessThreshold":            "1",
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.TimeoutSeconds":              "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    type startSpec struct {
    	container          *v1.Container
    	ephemeralContainer *v1.EphemeralContainer
    }
    
    func containerStartSpec(c *v1.Container) *startSpec {
    	return &startSpec{container: c}
    }
    
    func ephemeralContainerStartSpec(ec *v1.EphemeralContainer) *startSpec {
    	return &startSpec{
    		container:          (*v1.Container)(&ec.EphemeralContainerCommon),
    		ephemeralContainer: ec,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				EphemeralContainersToStart: []int{0},
    			},
    		},
    		"Start second ephemeral container": {
    			mutatePodFn: func(pod *v1.Pod) {
    				pod.Spec.EphemeralContainers = append(pod.Spec.EphemeralContainers, v1.EphemeralContainer{
    					EphemeralContainerCommon: v1.EphemeralContainerCommon{
    						Name:  "debug2",
    						Image: "busybox",
    					},
    				})
    			},
    			actions: podActions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

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

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

                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "ephemeralContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "ephemeralContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "ephemeralContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
    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