Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for PodTemplateSpec (0.2 sec)

  1. pkg/controller/daemon/util/daemonset_util.go

    // label which contains templateGeneration (for backward compatibility),
    // hash of provided template and sets default daemon tolerations.
    func CreatePodTemplate(template v1.PodTemplateSpec, generation *int64, hash string) v1.PodTemplateSpec {
    	newTemplate := *template.DeepCopy()
    
    	AddOrUpdateDaemonPodTolerations(&newTemplate.Spec)
    
    	if newTemplate.ObjectMeta.Labels == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/ttlafterfinished/ttlafterfinished_controller_test.go

    			Name:      "foobar",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: batchv1.JobSpec{
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Template: corev1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"foo": "bar",
    					},
    				},
    				Spec: corev1.PodSpec{
    					Containers: []corev1.Container{
    						{Image: "foo/bar"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 18 18:46:26 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util_test.go

    					EnableServiceLinks:            &enableServiceLinks,
    				},
    			},
    		},
    	}
    }
    
    func generatePodTemplateSpec(name, nodeName string, annotations, labels map[string]string) v1.PodTemplateSpec {
    	return v1.PodTemplateSpec{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Annotations: annotations,
    			Labels:      labels,
    		},
    		Spec: v1.PodSpec{
    			NodeName: nodeName,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K 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. pkg/controller/deployment/util/deployment_util.go

    			owned.Items = append(owned.Items, *pod)
    		}
    	}
    	return owned, nil
    }
    
    // EqualIgnoreHash returns true if two given podTemplateSpec are equal, ignoring the diff in value of Labels[pod-template-hash]
    // We ignore pod-template-hash because:
    //  1. The hash result would be different upon podTemplateSpec API changes
    //     (e.g. the addition of a new field will cause the hash code to change)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top