Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for rollingUpdate (0.32 sec)

  1. hack/testdata/rollingupdate-daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  2. hack/testdata/rollingupdate-statefulset.yaml

    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: nginx
      labels:
        app: nginx-statefulset
    spec:
      selector:
        matchLabels:
          app: nginx-statefulset
      updateStrategy:
        type: RollingUpdate
      serviceName: "nginx"
      replicas: 0
      template:
        metadata:
          labels:
            app: nginx-statefulset
        spec:
          terminationGracePeriodSeconds: 5
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  3. hack/testdata/rollingupdate-daemonset-rv2.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 802 bytes
    - Viewed (0)
  4. hack/testdata/rollingupdate-statefulset-rv2.yaml

    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: nginx
      labels:
        app: nginx-statefulset
    spec:
      selector:
        matchLabels:
          app: nginx-statefulset
      updateStrategy:
        type: RollingUpdate
      serviceName: "nginx"
      replicas: 0
      template:
        metadata:
          labels:
            app: nginx-statefulset
        spec:
          terminationGracePeriodSeconds: 5
          containers:
          - name: nginx
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 719 bytes
    - Viewed (0)
  5. pkg/apis/apps/v1/defaults.go

    		if updateStrategy.RollingUpdate == nil {
    			rollingUpdate := appsv1.RollingUpdateDaemonSet{}
    			updateStrategy.RollingUpdate = &rollingUpdate
    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			updateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta2/defaults.go

    		if updateStrategy.RollingUpdate == nil {
    			rollingUpdate := appsv1beta2.RollingUpdateDaemonSet{}
    			updateStrategy.RollingUpdate = &rollingUpdate
    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			updateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. pkg/apis/extensions/v1beta1/defaults.go

    		if updateStrategy.RollingUpdate == nil {
    			rollingUpdate := extensionsv1beta1.RollingUpdateDaemonSet{}
    			updateStrategy.RollingUpdate = &rollingUpdate
    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			maxUnavailable := intstr.FromInt32(1)
    			updateStrategy.RollingUpdate.MaxUnavailable = &maxUnavailable
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. pkg/apis/apps/fuzzer/fuzzer.go

    				j.RollingUpdate = nil
    			} else {
    				rollingUpdate := apps.RollingUpdateDeployment{}
    				if c.RandBool() {
    					rollingUpdate.MaxUnavailable = intstr.FromInt32(c.Rand.Int31())
    					rollingUpdate.MaxSurge = intstr.FromInt32(c.Rand.Int31())
    				} else {
    					rollingUpdate.MaxSurge = intstr.FromString(fmt.Sprintf("%d%%", c.Rand.Int31()))
    				}
    				j.RollingUpdate = &rollingUpdate
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta1/defaults.go

    	if strategy.Type == "" {
    		strategy.Type = appsv1beta1.RollingUpdateDeploymentStrategyType
    	}
    	if strategy.Type == appsv1beta1.RollingUpdateDeploymentStrategyType {
    		if strategy.RollingUpdate == nil {
    			rollingUpdate := appsv1beta1.RollingUpdateDeployment{}
    			strategy.RollingUpdate = &rollingUpdate
    		}
    		if strategy.RollingUpdate.MaxUnavailable == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. 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"`
    }
    
    // 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