Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for DaemonSetUpdateStrategyType (0.23 sec)

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

    // DaemonSetUpdateStrategyApplyConfiguration represents an declarative configuration of the DaemonSetUpdateStrategy type for use
    // with apply.
    type DaemonSetUpdateStrategyApplyConfiguration struct {
    	Type          *v1beta2.DaemonSetUpdateStrategyType      `json:"type,omitempty"`
    	RollingUpdate *RollingUpdateDaemonSetApplyConfiguration `json:"rollingUpdate,omitempty"`
    }
    
    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. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetupdatestrategy.go

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

    		},
    		func(j *apps.DaemonSetUpdateStrategy, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			// Ensure that strategyType is one of valid values.
    			strategyTypes := []apps.DaemonSetUpdateStrategyType{apps.RollingUpdateDaemonSetStrategyType, apps.OnDeleteDaemonSetStrategyType}
    			j.Type = strategyTypes[c.Rand.Intn(len(strategyTypes))]
    			if j.Type != apps.RollingUpdateDaemonSetStrategyType {
    				j.RollingUpdate = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/apis/apps/types.go

    }
    
    // DaemonSetUpdateStrategyType is a strategy according to which a daemon set
    // gets updated.
    type DaemonSetUpdateStrategyType string
    
    const (
    	// RollingUpdateDaemonSetStrategyType - Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // +enum
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    type DaemonSetUpdateStrategyType string
    
    const (
    	// Replace the old daemons by new ones using rolling update i.e replace them on each node one after the other.
    	RollingUpdateDaemonSetStrategyType DaemonSetUpdateStrategyType = "RollingUpdate"
    
    	// Replace the old daemons only when it's killed
    	OnDeleteDaemonSetStrategyType DaemonSetUpdateStrategyType = "OnDelete"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_DaemonSetUpdateStrategy_To_apps_DaemonSetUpdateStrategy(in *v1.DaemonSetUpdateStrategy, out *apps.DaemonSetUpdateStrategy, s conversion.Scope) error {
    	out.Type = apps.DaemonSetUpdateStrategyType(in.Type)
    	if in.RollingUpdate != nil {
    		in, out := &in.RollingUpdate, &out.RollingUpdate
    		*out = new(apps.RollingUpdateDaemonSet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta2_DaemonSetUpdateStrategy_To_apps_DaemonSetUpdateStrategy(in *v1beta2.DaemonSetUpdateStrategy, out *apps.DaemonSetUpdateStrategy, s conversion.Scope) error {
    	out.Type = apps.DaemonSetUpdateStrategyType(in.Type)
    	if in.RollingUpdate != nil {
    		in, out := &in.RollingUpdate, &out.RollingUpdate
    		*out = new(apps.RollingUpdateDaemonSet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  10. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_DaemonSetUpdateStrategy_To_apps_DaemonSetUpdateStrategy(in *v1beta1.DaemonSetUpdateStrategy, out *apps.DaemonSetUpdateStrategy, s conversion.Scope) error {
    	out.Type = apps.DaemonSetUpdateStrategyType(in.Type)
    	if in.RollingUpdate != nil {
    		in, out := &in.RollingUpdate, &out.RollingUpdate
    		*out = new(apps.RollingUpdateDaemonSet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
Back to top