Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for PodTemplateSpec (4 sec)

  1. pkg/registry/batch/cronjob/strategy_test.go

    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/kubernetes/pkg/apis/batch"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/utils/ptr"
    )
    
    var (
    	validPodTemplateSpec = api.PodTemplateSpec{
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyOnFailure,
    			DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    	CreatePods(ctx context.Context, namespace string, template *v1.PodTemplateSpec, object runtime.Object, controllerRef *metav1.OwnerReference) error
    	// CreatePodsWithGenerateName creates new pods according to the spec, sets object as the pod's controller and sets pod's generateName.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/storage/storage_test.go

    			Completions: &completions,
    			Parallelism: &parallelism,
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"a": "b"},
    			},
    			ManualSelector: newBool(true),
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation_test.go

    	return &metav1.LabelSelector{
    		MatchLabels: map[string]string{"a": "b"},
    	}
    }
    
    func getValidPodTemplateSpecForManual(selector *metav1.LabelSelector) api.PodTemplateSpec {
    	return api.PodTemplateSpec{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels: selector.MatchLabels,
    		},
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyOnFailure,
    			DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/strategy_test.go

    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("StatefulSet should not allow create on update")
    	}
    
    	validSelector := map[string]string{"a": "b"}
    	validPodTemplate := api.PodTemplate{
    		Template: api.PodTemplateSpec{
    			ObjectMeta: metav1.ObjectMeta{
    				Labels: validSelector,
    			},
    			Spec: api.PodSpec{
    				RestartPolicy: api.RestartPolicyAlways,
    				DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta1/defaults_test.go

    func TestSetDefaultDeployment(t *testing.T) {
    	defaultIntOrString := intstr.FromString("25%")
    	differentIntOrString := intstr.FromInt32(5)
    	period := int64(v1.DefaultTerminationGracePeriodSeconds)
    	defaultTemplate := v1.PodTemplateSpec{
    		Spec: v1.PodSpec{
    			DNSPolicy:                     v1.DNSClusterFirst,
    			RestartPolicy:                 v1.RestartPolicyAlways,
    			SecurityContext:               &v1.PodSecurityContext{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    				Template: api.PodTemplateSpec{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:   "pod-template-2",
    						Labels: map[string]string{"foo": "bar"},
    					},
    					Spec: api.PodSpec{
    						Containers: []api.Container{},
    					},
    				},
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "pod-template-2"},
    				Template: api.PodTemplateSpec{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils_test.go

    	maxCollisionCount := int32(math.MaxInt32)
    	tests := []struct {
    		name                string
    		template            *v1.PodTemplateSpec
    		collisionCount      *int32
    		otherCollisionCount *int32
    	}{
    		{
    			name:                "simple",
    			template:            &v1.PodTemplateSpec{},
    			collisionCount:      &collisionCount,
    			otherCollisionCount: &otherCollisionCount,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			UpdateStrategy: apps.DaemonSetUpdateStrategy{
    				Type: apps.OnDeleteDaemonSetStrategyType,
    			},
    			Selector: &metav1.LabelSelector{MatchLabels: simpleDaemonSetLabel},
    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: simpleDaemonSetLabel,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Image:                  "foo/bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    			Name:      "kube-proxy",
    			Namespace: metav1.NamespaceSystem,
    			Labels: map[string]string{
    				"k8s-app": "kube-proxy",
    			},
    		},
    		Spec: apps.DaemonSetSpec{
    			Template: v1.PodTemplateSpec{},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating Daemonset: %v", err)
    	}
    
    	return client
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top