Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for PodTemplate (0.4 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PodTemplate) DeepCopyInto(out *PodTemplate) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Template.DeepCopyInto(&out.Template)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodTemplate.
    func (in *PodTemplate) DeepCopy() *PodTemplate {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PodTemplate) DeepCopyInto(out *PodTemplate) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Template.DeepCopyInto(&out.Template)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodTemplate.
    func (in *PodTemplate) DeepCopy() *PodTemplate {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/api__v1_openapi.json

              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.PodTemplate": {
            "description": "PodTemplate describes a template for creating copies of a predefined pod.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    }
    
    // cleanupDeployment is responsible for cleaning up a deployment ie. retains all but the latest N old replica sets
    // where N=d.Spec.RevisionHistoryLimit. Old replica sets are older versions of the podtemplate of a deployment kept
    // around by default 1) for historical reasons and 2) for the ability to rollback a deployment.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	// represented by the jobs's .status.failed field, is incremented and it is
    	// checked against the backoffLimit. This field cannot be used in combination
    	// with .spec.podTemplate.spec.restartPolicy=OnFailure.
    	//
    	// This field is beta-level. It can be used when the `JobPodFailurePolicy`
    	// feature gate is enabled (enabled by default).
    	// +optional
    	PodFailurePolicy *PodFailurePolicy
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodTemplate": {
          "description": "PodTemplate describes a template for creating copies of a predefined pod.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodTemplate": {
          "description": "PodTemplate describes a template for creating copies of a predefined pod.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Graduated support for `minDomains` in pod topology spread constraints, to general availability.
      The `MinDomainsInPodTopologySpread` feature gate no longer has any effect, and the field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/strategy_test.go

    					Template:       validPodTemplateSpec,
    					ManualSelector: ptr.To(true),
    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    		},
    		"generation 1 for new; force WarningsOnUpdate to check PodTemplate for updates": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    					Generation:      1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    		}
    	}
    }
    
    func TestValidateReplicationControllerStatusUpdate(t *testing.T) {
    	validSelector := map[string]string{"a": "b"}
    	validPodTemplate := core.PodTemplate{
    		Template: core.PodTemplateSpec{
    			ObjectMeta: metav1.ObjectMeta{
    				Labels: validSelector,
    			},
    			Spec: core.PodSpec{
    				RestartPolicy: core.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top