Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 296 for rollingUpdate (0.28 sec)

  1. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

        addonmanager.kubernetes.io/mode: Reconcile
        version: v0.1
    spec:
      selector:
        matchLabels:
          k8s-app: metadata-proxy
          version: v0.1
      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: metadata-proxy
            kubernetes.io/cluster-service: "true"
            version: v0.1
        spec:
          priorityClassName: system-node-critical
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
              name: istio-ca-root-cert
            name: istiod-ca-cert
      updateStrategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 0
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/registry/apps/statefulset/strategy_test.go

    			MinReadySeconds: minReadySeconds,
    		},
    	}
    }
    
    func makeStatefulSetWithMaxUnavailable(maxUnavailable *int) *apps.StatefulSet {
    	rollingUpdate := apps.RollingUpdateStatefulSetStrategy{}
    	if maxUnavailable != nil {
    		maxUnavailableIntStr := intstr.FromInt32(int32(*maxUnavailable))
    		rollingUpdate = apps.RollingUpdateStatefulSetStrategy{
    			MaxUnavailable: &maxUnavailableIntStr,
    		}
    	}
    
    	return &apps.StatefulSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"":              "DeploymentStrategy describes how to replace existing pods with new ones.",
    	"type":          "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    	"rollingUpdate": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.",
    }
    
    func (DeploymentStrategy) SwaggerDoc() map[string]string {
    	return map_DeploymentStrategy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if DeploymentStrategyType =
      // RollingUpdate.
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be.
      // +optional
      optional RollingUpdateDeployment rollingUpdate = 2;
    }
    
    // DEPRECATED.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

        operator.istio.io/component: "Cni"
    spec:
      selector:
        matchLabels:
          k8s-app: {{ template "name" . }}-node
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: {{ .Values.cni.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
            k8s-app: {{ template "name" . }}-node
            sidecar.istio.io/inject: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pkg/registry/apps/deployment/strategy_test.go

    				MatchLabels:      selectorLabels,
    				MatchExpressions: []metav1.LabelSelectorRequirement{},
    			},
    			Strategy: apps.DeploymentStrategy{
    				Type: apps.RollingUpdateDeploymentStrategyType,
    				RollingUpdate: &apps.RollingUpdateDeployment{
    					MaxSurge:       intstr.FromInt32(1),
    					MaxUnavailable: intstr.FromInt32(1),
    				},
    			},
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	out.Type = apps.DaemonSetUpdateStrategyType(in.Type)
    	if in.RollingUpdate != nil {
    		in, out := &in.RollingUpdate, &out.RollingUpdate
    		*out = new(apps.RollingUpdateDaemonSet)
    		if err := Convert_v1beta1_RollingUpdateDaemonSet_To_apps_RollingUpdateDaemonSet(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.RollingUpdate = nil
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// See https://github.com/kubernetes/kubernetes/issues/35345
    	// +optional
    	RollingUpdate *RollingUpdateDaemonSet `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
    }
    
    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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1/conversion_test.go

    			stsUpdateStrategy1: &apps.StatefulSetUpdateStrategy{
    				Type:          apps.StatefulSetUpdateStrategyType("foo"),
    				RollingUpdate: appsrollingUpdate,
    			},
    			stsUpdateStrategy2: &appsv1.StatefulSetUpdateStrategy{
    				Type:          appsv1.StatefulSetUpdateStrategyType("foo"),
    				RollingUpdate: appsv1rollingUpdate,
    			},
    		},
    	}
    
    	for k, tc := range testcases {
    		// apps -> appsv1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top