Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 296 for rollingUpdate (0.36 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/daemonsetupdatestrategy.go

    // with apply.
    type DaemonSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1beta2.DaemonSetUpdateStrategyType      `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDaemonSetApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // DaemonSetUpdateStrategyApplyConfiguration constructs an declarative configuration of the DaemonSetUpdateStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. pkg/apis/apps/v1beta1/defaults_test.go

    						Type:          appsv1beta1.RollingUpdateDeploymentStrategyType,
    						RollingUpdate: nil,
    					},
    				},
    			},
    			expected: &appsv1beta1.Deployment{
    				Spec: appsv1beta1.DeploymentSpec{
    					Replicas: ptr.To[int32](3),
    					Strategy: appsv1beta1.DeploymentStrategy{
    						Type: appsv1beta1.RollingUpdateDeploymentStrategyType,
    						RollingUpdate: &appsv1beta1.RollingUpdateDeployment{
    							MaxSurge:       &defaultIntOrString,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/deploymentstrategy.go

    // with apply.
    type DeploymentStrategyApplyConfiguration struct {
    	Type          *v1.DeploymentStrategyType                 `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDeploymentApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // DeploymentStrategyApplyConfiguration constructs an declarative configuration of the DeploymentStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/deploymentstrategy.go

    // with apply.
    type DeploymentStrategyApplyConfiguration struct {
    	Type          *v1beta1.DeploymentStrategyType            `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDeploymentApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // DeploymentStrategyApplyConfiguration constructs an declarative configuration of the DeploymentStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/defaults_test.go

    						Type: appsv1.RollingUpdateStatefulSetStrategyType,
    						RollingUpdate: &appsv1.RollingUpdateStatefulSetStrategy{
    							Partition: &defaultPartition,
    						},
    					},
    					RevisionHistoryLimit: ptr.To[int32](10),
    				},
    			},
    		},
    		{
    			name: "UpdateStrategy.RollingUpdate.Partition is not lost when UpdateStrategy.Type is not set",
    			original: &appsv1.StatefulSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetupdatestrategy.go

    // with apply.
    type DaemonSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1.DaemonSetUpdateStrategyType           `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDaemonSetApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // DaemonSetUpdateStrategyApplyConfiguration constructs an declarative configuration of the DaemonSetUpdateStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/deploymentstrategy.go

    // with apply.
    type DeploymentStrategyApplyConfiguration struct {
    	Type          *v1beta2.DeploymentStrategyType            `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDeploymentApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // DeploymentStrategyApplyConfiguration constructs an declarative configuration of the DeploymentStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. pkg/apis/apps/validation/validation.go

    	case apps.RollingUpdateDaemonSetStrategyType:
    		// Make sure RollingUpdate field isn't nil.
    		if strategy.RollingUpdate == nil {
    			allErrs = append(allErrs, field.Required(fldPath.Child("rollingUpdate"), ""))
    			return allErrs
    		}
    		allErrs = append(allErrs, ValidateRollingUpdateDaemonSet(strategy.RollingUpdate, fldPath.Child("rollingUpdate"))...)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetupdatestrategy.go

    // with apply.
    type StatefulSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1beta2.StatefulSetUpdateStrategyType              `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateStatefulSetStrategyApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // StatefulSetUpdateStrategyApplyConfiguration constructs an declarative configuration of the StatefulSetUpdateStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetupdatestrategy.go

    // with apply.
    type StatefulSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1.StatefulSetUpdateStrategyType                   `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateStatefulSetStrategyApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    // StatefulSetUpdateStrategyApplyConfiguration constructs an declarative configuration of the StatefulSetUpdateStrategy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top