Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for rollingUpdate (0.28 sec)

  1. samples/addons/prometheus.yaml

          app.kubernetes.io/component: server
          app.kubernetes.io/name: prometheus
          app.kubernetes.io/instance: prometheus
      replicas: 1
      revisionHistoryLimit: 10
      strategy:
        type: Recreate
        rollingUpdate: null
      template:
        metadata:
          labels:
            app.kubernetes.io/component: server
            app.kubernetes.io/name: prometheus
            app.kubernetes.io/instance: prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller_test.go

    						},
    					},
    				},
    			},
    			RevisionHistoryLimit: revisionHistoryLimit,
    		},
    	}
    	if maxSurge != nil {
    		d.Spec.Strategy.RollingUpdate.MaxSurge = maxSurge
    	}
    	if maxUnavailable != nil {
    		d.Spec.Strategy.RollingUpdate.MaxUnavailable = maxUnavailable
    	}
    	return &d
    }
    
    func newReplicaSet(d *apps.Deployment, name string, replicas int32) *apps.ReplicaSet {
    	return &apps.ReplicaSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "rollingUpdate": {
              "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
              "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
            },
            "type": {
              "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
              "type": "string"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.RollingUpdate == nil {
    				m.RollingUpdate = &RollingUpdateDaemonSet{}
    			}
    			if err := m.RollingUpdate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  5. pkg/controller/daemon/update.go

    	"k8s.io/kubernetes/pkg/controller/daemon/util"
    	labelsutil "k8s.io/kubernetes/pkg/util/labels"
    )
    
    // rollingUpdate identifies the set of old pods to delete, or additional pods to create on nodes,
    // remaining within the constraints imposed by the update strategy.
    func (dsc *DaemonSetsController) rollingUpdate(ctx context.Context, ds *apps.DaemonSet, nodeList []*v1.Node, hash string) error {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // invoked in a cluster using the Multus CNI plugin.
      string provider = 22;
    
      // The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    
    	switch set.Spec.UpdateStrategy.Type {
    	case apps.OnDeleteStatefulSetStrategyType:
    		return true
    	case apps.RollingUpdateStatefulSetStrategyType:
    		if set.Spec.UpdateStrategy.RollingUpdate == nil || *set.Spec.UpdateStrategy.RollingUpdate.Partition <= 0 {
    			if set.Status.CurrentReplicas < *set.Spec.Replicas {
    				return false
    			}
    			for i := range pods {
    				if getPodRevision(pods[i]) != set.Status.CurrentRevision {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

              fsType: fsTypeValue
              storagePolicyID: storagePolicyIDValue
              storagePolicyName: storagePolicyNameValue
              volumePath: volumePathValue
      updateStrategy:
        rollingUpdate:
          maxSurge: maxSurgeValue
          maxUnavailable: maxUnavailableValue
        type: typeValue
    status:
      collisionCount: 9
      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top