Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for podspec_ (0.18 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    	newLabels := label
    	var podSpec v1.PodSpec
    	// Copy pod spec from DaemonSet template, or use a default one if DaemonSet is nil
    	if ds != nil {
    		hash := controller.ComputeHash(&ds.Spec.Template, ds.Status.CollisionCount)
    		newLabels = labelsutil.CloneAndAddLabel(label, apps.DefaultDaemonSetUniqueLabelKey, hash)
    		podSpec = ds.Spec.Template.Spec
    	} else {
    		podSpec = v1.PodSpec{
    			Containers: []v1.Container{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    		name        string
    		enabled     bool
    		podSpec     *api.PodSpec
    		oldPodSpec  *api.PodSpec
    		wantPodSpec *api.PodSpec
    	}{
    		{
    			name:    "feature disabled, both pods don't use the fields",
    			enabled: false,
    			oldPodSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{},
    			},
    			podSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	podB := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine2"},
    	}
    	podAWithResourceVersion := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test", ResourceVersion: "7"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation_test.go

    	validPodSpecAbc := api.PodSpec{
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    		Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    	}
    	validPodSpecDef := 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
    - 111.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

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

    	// default NodeName in test is 127.0.0.1
    	pods := []*v1.Pod{
    		podWithUIDNameNsSpec("123456789", "notfittingpod", "foo", v1.PodSpec{NodeName: "127.0.0.2"}),
    		podWithUIDNameNsSpec("987654321", "fittingpod", "foo", v1.PodSpec{NodeName: "127.0.0.1"}),
    	}
    
    	notfittingPod := pods[0]
    	fittingPod := pods[1]
    
    	kl.HandlePodAdditions(pods)
    
    	// Check pod status stored in the status map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy_test.go

    		MatchLabels: map[string]string{"a": "b"},
    	}
    	validPodTemplateSpec := api.PodTemplateSpec{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels: validSelector.MatchLabels,
    		},
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyOnFailure,
    			DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    	}
    }
    
    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)
  9. pkg/kubelet/kubelet_pods_test.go

    			})
    
    			testPod := &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace:   tc.ns,
    					Name:        "dapi-test-pod-name",
    					Annotations: map[string]string{},
    				},
    				Spec: v1.PodSpec{
    					ServiceAccountName: "special",
    					NodeName:           "node-name",
    					EnableServiceLinks: tc.enableServiceLinks,
    				},
    			}
    			podIP := ""
    			if len(tc.podIPs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    	noResources := v1.PodSpec{
    		Containers: []v1.Container{
    			{},
    		},
    	}
    	noResources1 := noResources
    	noResources1.NodeName = "node1"
    	// A pod with the same resources as a 0-request pod gets by default as its resources (for spreading).
    	small := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Resources: v1.ResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top