Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for StatefulSetUpdateStrategyType (0.38 sec)

  1. 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"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetupdatestrategy.go

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

    // with apply.
    type StatefulSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1beta1.StatefulSetUpdateStrategyType              `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateStatefulSetStrategyApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1/conversion_test.go

    			stsUpdateStrategy1: &apps.StatefulSetUpdateStrategy{Type: apps.StatefulSetUpdateStrategyType("foo")},
    			stsUpdateStrategy2: &appsv1.StatefulSetUpdateStrategy{Type: appsv1.StatefulSetUpdateStrategyType("foo")},
    		},
    		"StatefulSetUpdateStrategy Conversion 2": {
    			stsUpdateStrategy1: &apps.StatefulSetUpdateStrategy{
    				Type:          apps.StatefulSetUpdateStrategyType("foo"),
    				RollingUpdate: appsrollingUpdate,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta2/conversion_test.go

    			stsUpdateStrategy1: &apps.StatefulSetUpdateStrategy{Type: apps.StatefulSetUpdateStrategyType("foo")},
    			stsUpdateStrategy2: &v1beta2.StatefulSetUpdateStrategy{Type: v1beta2.StatefulSetUpdateStrategyType("foo")},
    		},
    		"StatefulSetUpdateStrategy Conversion 2": {
    			stsUpdateStrategy1: &apps.StatefulSetUpdateStrategy{
    				Type:          apps.StatefulSetUpdateStrategyType("foo"),
    				RollingUpdate: appsrollingUpdate,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/types.go

    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    	// applied to all Pods in the StatefulSet with respect to the StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    	Type StatefulSetUpdateStrategyType
    	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    	RollingUpdate *RollingUpdateStatefulSetStrategy
    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    type StatefulSetUpdateStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    	// applied to all Pods in the StatefulSet with respect to the StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    // +enum
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_StatefulSetUpdateStrategy_To_apps_StatefulSetUpdateStrategy(in *v1beta1.StatefulSetUpdateStrategy, out *apps.StatefulSetUpdateStrategy, s conversion.Scope) error {
    	out.Type = apps.StatefulSetUpdateStrategyType(in.Type)
    	if in.RollingUpdate != nil {
    		in, out := &in.RollingUpdate, &out.RollingUpdate
    		*out = new(apps.RollingUpdateStatefulSetStrategy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
Back to top