Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for STRATEGY (0.18 sec)

  1. pkg/registry/core/pod/strategy_test.go

    			pod.Spec.TopologySpreadConstraints = append(pod.Spec.TopologySpreadConstraints, tc.topologySpreadConstraints...)
    
    			errs := Strategy.Validate(genericapirequest.NewContext(), pod)
    			if len(errs) != 0 {
    				t.Errorf("Unexpected error: %v", errs.ToAggregate())
    			}
    
    			Strategy.PrepareForCreate(genericapirequest.NewContext(), pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    
    	// The deployment strategy to use to replace existing pods with new ones.
    	// +optional
    	// +patchStrategy=retainKeys
    	Strategy DeploymentStrategy `json:"strategy,omitempty" patchStrategy:"retainKeys" protobuf:"bytes,4,opt,name=strategy"`
    
    	// Minimum number of seconds for which a newly created pod should be ready
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    
    	// The deployment strategy to use to replace existing pods with new ones.
    	// +optional
    	// +patchStrategy=retainKeys
    	Strategy DeploymentStrategy `json:"strategy,omitempty" patchStrategy:"retainKeys" protobuf:"bytes,4,opt,name=strategy"`
    
    	// Minimum number of seconds for which a newly created pod should be ready
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            }
    
            private class SerializationConstructorImpl implements SerializationConstructor<Object> {
                private final InstantiationStrategy strategy;
    
                public SerializationConstructorImpl(Class<?> baseClass) {
                    this.strategy = createForSerialization(generatedClass, baseClass);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // - IFF map field - set to nil in patch
    // - IFF list of maps && merge strategy - use deleteDirective for the elements
    // - IFF list of primitives && merge strategy - use parallel deletion list
    // - IFF list of maps or primitives with replace strategy (default) - set patch value to the value in modified
    // - Build $retainKeys directive for fields with retainKeys patch strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "description": "CustomResourceConversion describes how to convert different versions of a CR.",
          "type": "object",
          "required": ["strategy"],
          "properties": {
            "strategy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	allErrs = append(allErrs, validateEnumStrings(fldPath.Child("strategy"), string(conversion.Strategy), []string{string(apiextensions.NoneConverter), string(apiextensions.WebhookConverter)}, true)...)
    	if conversion.Strategy == apiextensions.WebhookConverter {
    		if conversion.WebhookClientConfig == nil {
    			allErrs = append(allErrs, field.Required(fldPath.Child("webhookClientConfig"), "required when strategy is set to Webhook"))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (1)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    
    	// The deployment strategy to use to replace existing pods with new ones.
    	// +optional
    	// +patchStrategy=retainKeys
    	Strategy DeploymentStrategy `json:"strategy,omitempty" patchStrategy:"retainKeys" protobuf:"bytes,4,opt,name=strategy"`
    
    	// Minimum number of seconds for which a newly created pod should be ready
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    	if err := corev1.Convert_v1_PodTemplateSpec_To_core_PodTemplateSpec(&in.Template, &out.Template, s); err != nil {
    		return err
    	}
    	if err := Convert_v1beta1_DeploymentStrategy_To_apps_DeploymentStrategy(&in.Strategy, &out.Strategy, s); err != nil {
    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      ZeroVPNConfig zvpn = 19;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 20 [deprecated = true];
    
      // K8s rolling update strategy
      IntOrString rollingMaxSurge = 21 [deprecated = true];
    
      // The number of pods that can be unavailable during a rolling update (see
      // `strategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/#DeploymentSpec).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top