Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for PodTemplateSpec (0.22 sec)

  1. staging/src/k8s.io/api/apps/v1/generated.proto

      // The only allowed template.spec.restartPolicy value is "Always".
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
      optional .k8s.io.api.core.v1.PodTemplateSpec template = 2;
    
      // An update strategy to replace existing DaemonSet pods with new pods.
      // +optional
      optional DaemonSetUpdateStrategy updateStrategy = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion_test.go

    			},
    			Spec: v1.ReplicationControllerSpec{
    				Replicas:        utilpointer.Int32(1),
    				MinReadySeconds: 32,
    				Selector:        map[string]string{"foo": "bar", "bar": "foo"},
    				Template: &v1.PodTemplateSpec{
    					ObjectMeta: metav1.ObjectMeta{
    						Labels: map[string]string{"foo": "bar", "bar": "foo"},
    					},
    					Spec: v1.PodSpec{
    						Containers: []v1.Container{
    							{
    								Name:  "container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // The only allowed template.spec.restartPolicy value is "Always".
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
      optional k8s.io.api.core.v1.PodTemplateSpec template = 2;
    
      // An update strategy to replace existing DaemonSet pods with new pods.
      // +optional
      optional DaemonSetUpdateStrategy updateStrategy = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // The only allowed template.spec.restartPolicy value is "Always".
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
      optional .k8s.io.api.core.v1.PodTemplateSpec template = 2;
    
      // An update strategy to replace existing DaemonSet pods with new pods.
      // +optional
      optional DaemonSetUpdateStrategy updateStrategy = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // Template describes the pods that will be created.
      // The only allowed template.spec.restartPolicy value is "Always".
      optional k8s.io.api.core.v1.PodTemplateSpec template = 3;
    
      // The deployment strategy to use to replace existing pods with new ones.
      // +optional
      // +patchStrategy=retainKeys
      optional DeploymentStrategy strategy = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pkg/controller/deployment/sync.go

    		rs, rsErr := dc.rsLister.ReplicaSets(newRS.Namespace).Get(newRS.Name)
    		if rsErr != nil {
    			return nil, rsErr
    		}
    
    		// If the Deployment owns the ReplicaSet and the ReplicaSet's PodTemplateSpec is semantically
    		// deep equal to the PodTemplateSpec of the Deployment, it's the Deployment's new ReplicaSet.
    		// Otherwise, this is a hash collision and we need to increment the collisionCount field in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. pkg/api/pod/util.go

    // DropDisabledTemplateFields removes disabled fields from the pod template metadata and spec.
    // This should be called from PrepareForCreate/PrepareForUpdate for all resources containing a PodTemplateSpec
    func DropDisabledTemplateFields(podTemplate, oldPodTemplate *api.PodTemplateSpec) {
    	var (
    		podSpec           *api.PodSpec
    		podAnnotations    map[string]string
    		oldPodSpec        *api.PodSpec
    		oldPodAnnotations map[string]string
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. pkg/controller/replication/conversion.go

    	}
    	return &rc, nil
    }
    
    type podControlAdapter struct {
    	controller.PodControlInterface
    }
    
    func (pc podControlAdapter) CreatePods(ctx context.Context, namespace string, template *v1.PodTemplateSpec, object runtime.Object, controllerRef *metav1.OwnerReference) error {
    	rc, err := convertRStoRC(object.(*apps.ReplicaSet))
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // Template describes the pods that will be created.
      // The only allowed template.spec.restartPolicy value is "Always".
      optional .k8s.io.api.core.v1.PodTemplateSpec template = 3;
    
      // The deployment strategy to use to replace existing pods with new ones.
      // +optional
      // +patchStrategy=retainKeys
      optional DeploymentStrategy strategy = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			Name:      kubeadmconstants.CoreDNSConfigMap,
    			Namespace: metav1.NamespaceSystem,
    			Labels: map[string]string{
    				"k8s-app": "kube-dns",
    			},
    		},
    		Spec: apps.DeploymentSpec{
    			Template: v1.PodTemplateSpec{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Image: "test:" + coreDNSVersion,
    						},
    					},
    				},
    			},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top