Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 430 for initContainer (0.44 sec)

  1. pkg/apis/batch/validation/validation_test.go

    						}},
    					},
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.podFailurePolicy.rules[1].onExitCodes.containerName: Invalid value: "xyz": must be one of the container or initContainer names in the pod template`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector: validGeneratedSelector,
    					Template: validPodTemplateSpecForGeneratedRestartPolicyNever,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "directory": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    			expectedTransport: nil,
    		},
    		{
    			name: "initcontainers",
    			in: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: fakePodName},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "container1"},
    						{Name: "container2"},
    					},
    					InitContainers: []api.Container{
    						{Name: "initcontainer1"},
    					},
    				},
    				Status: api.PodStatus{},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. pkg/apis/core/pods/helpers_test.go

    			&api.PodSpec{
    				InitContainers: []api.Container{
    					{Name: "i1"},
    					{Name: "i2"},
    				},
    			},
    			[]string{"spec.initContainers[0]", "spec.initContainers[1]"},
    		},
    		{
    			"regular and init containers",
    			field.NewPath("spec"),
    			&api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    					{Name: "c2"},
    				},
    				InitContainers: []api.Container{
    					{Name: "i1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

    // Git repo volumes do not support ownership management.
    // Git repo volumes support SELinux relabeling.
    //
    // DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
    // EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    // into the Pod's container.
    message GitRepoVolumeSource {
      // repository is the URL
      optional string repository = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// GitRepo represents a git repository at a particular revision.
    	// DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
    	// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
    	// into the Pod's container.
    	// +optional
    	GitRepo *GitRepoVolumeSource
    	// Secret represents a secret that should populate this volume.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"repository": "repository is the URL",
    	"revision":   "revision is the commit hash for the specified revision.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults_test.go

    		".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.GRPC.Service":                                 `""`,
    		".Spec.InitContainers[0].ReadinessProbe.PeriodSeconds":                                             `10`,
    		".Spec.InitContainers[0].ReadinessProbe.SuccessThreshold":                                          `1`,
    		".Spec.InitContainers[0].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)
  9. pkg/api/pod/util.go

    			podSpec.Containers[i].Lifecycle = nil
    		}
    	}
    
    	for i := range podSpec.InitContainers {
    		if podSpec.InitContainers[i].Lifecycle == nil {
    			continue
    		}
    		adjustLifecycle(podSpec.InitContainers[i].Lifecycle)
    		if podSpec.InitContainers[i].Lifecycle.PreStop == nil && podSpec.InitContainers[i].Lifecycle.PostStart == nil {
    			podSpec.InitContainers[i].Lifecycle = nil
    		}
    	}
    
    	for i := range podSpec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  10. pkg/api/v1/resource/helpers_test.go

    		podResizeStatus  v1.PodResizeStatus
    		initContainers   []v1.Container
    		containers       []v1.Container
    		containerStatus  []v1.ContainerStatus
    		expectedRequests v1.ResourceList
    	}{
    		{
    			description: "nil options, larger init container",
    			expectedRequests: v1.ResourceList{
    				v1.ResourceCPU: resource.MustParse("4"),
    			},
    			initContainers: []v1.Container{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top