Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 296 for rollingUpdate (0.19 sec)

  1. pkg/controller/daemon/update_test.go

    		Type: apps.RollingUpdateDaemonSetStrategyType,
    		RollingUpdate: &apps.RollingUpdateDaemonSet{
    			MaxUnavailable: &zero,
    			MaxSurge:       &value,
    		},
    	}
    }
    
    func newUpdateUnavailable(value intstr.IntOrString) apps.DaemonSetUpdateStrategy {
    	return apps.DaemonSetUpdateStrategy{
    		Type: apps.RollingUpdateDaemonSetStrategyType,
    		RollingUpdate: &apps.RollingUpdateDaemonSet{
    			MaxUnavailable: &value,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"":              "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
    	"type":          "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
    	"rollingUpdate": "Rolling update config params. Present only if type = \"RollingUpdate\".",
    }
    
    func (DaemonSetUpdateStrategy) SwaggerDoc() map[string]string {
    	return map_DaemonSetUpdateStrategy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
      // See https://github.com/kubernetes/kubernetes/issues/35345
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
      // See https://github.com/kubernetes/kubernetes/issues/35345
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/wait.go

    			var partition int
    			// default replicas for sts is 1
    			replicas := 1
    			// the rollingUpdate field can be nil even if the update strategy is a rolling update.
    			if sts.Spec.UpdateStrategy.RollingUpdate != nil &&
    				sts.Spec.UpdateStrategy.RollingUpdate.Partition != nil {
    				partition = int(*sts.Spec.UpdateStrategy.RollingUpdate.Partition)
    			}
    			if sts.Spec.Replicas != nil {
    				replicas = int(*sts.Spec.Replicas)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. pkg/controller/daemon/util/daemonset_util.go

    	}
    	if generation != nil {
    		newTemplate.ObjectMeta.Labels[extensions.DaemonSetTemplateGenerationKey] = fmt.Sprint(*generation)
    	}
    	// TODO: do we need to validate if the DaemonSet is RollingUpdate or not?
    	if len(hash) > 0 {
    		newTemplate.ObjectMeta.Labels[extensions.DefaultDaemonSetUniqueLabelKey] = hash
    	}
    	return newTemplate
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    		if ss.Spec.UpdateStrategy.RollingUpdate == nil {
    			ss.Spec.UpdateStrategy.RollingUpdate = &apps.RollingUpdateStatefulSetStrategy{}
    		}
    		ss.Spec.UpdateStrategy.RollingUpdate.Partition = partition
    	}
    }
    
    func tweakMaxUnavailable(mu intstr.IntOrString) statefulSetTweak {
    	return func(ss *apps.StatefulSet) {
    		if ss.Spec.UpdateStrategy.RollingUpdate == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. helm/minio/templates/deployment.yaml

      annotations: {{- toYaml .Values.additionalAnnotations | nindent 4 }}
      {{- end }}
    spec:
      strategy:
        type: {{ .Values.deploymentUpdate.type }}
        {{- if eq .Values.deploymentUpdate.type "RollingUpdate" }}
        rollingUpdate:
          maxSurge: {{ .Values.deploymentUpdate.maxSurge }}
          maxUnavailable: {{ .Values.deploymentUpdate.maxUnavailable }}
        {{- end }}
      replicas: 1
      selector:
        matchLabels:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

        k8s-app: konnectivity-agent
      namespace: kube-system
      name: konnectivity-agent
    spec:
      selector:
        matchLabels:
          k8s-app: konnectivity-agent
      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: konnectivity-agent
        spec:
          priorityClassName: system-cluster-critical
          tolerations:
            - key: "CriticalAddonsOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    kube-system labels: k8s-app: istio-cni-node release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" spec: selector: matchLabels: k8s-app: istio-cni-node updateStrategy: type: RollingUpdate rollingUpdate: maxUnavailable: 1 template: metadata: labels: k8s-app: istio-cni-node sidecar.istio.io/inject: "false" annotations: # This, along with the CriticalAddonsOnly toleration below, # marks the pod as a critical add-on, ensuring it gets # priority...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
Back to top