Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for revisionHistoryLimit (0.43 sec)

  1. samples/addons/loki.yaml

        app.kubernetes.io/part-of: memberlist
    spec:
      replicas: 1
      podManagementPolicy: Parallel
      updateStrategy:
        rollingUpdate:
          partition: 0
      serviceName: loki-headless
      revisionHistoryLimit: 10
      
      persistentVolumeClaimRetentionPolicy:
        whenDeleted: Delete
        whenScaled: Delete
      selector:
        matchLabels:
          app.kubernetes.io/name: loki
          app.kubernetes.io/instance: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    }
    
    func (m *DaemonSetSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.RevisionHistoryLimit != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.RevisionHistoryLimit))
    		i--
    		dAtA[i] = 0x30
    	}
    	i = encodeVarintGenerated(dAtA, i, uint64(m.MinReadySeconds))
    	i--
    	dAtA[i] = 0x20
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"updateStrategy":                       "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/generated.pb.go

    		}
    		i--
    		dAtA[i] = 0x42
    	}
    	i--
    	if m.Paused {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x38
    	if m.RevisionHistoryLimit != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.RevisionHistoryLimit))
    		i--
    		dAtA[i] = 0x30
    	}
    	i = encodeVarintGenerated(dAtA, i, uint64(m.MinReadySeconds))
    	i--
    	dAtA[i] = 0x28
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1/generated.proto

      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
      // StatefulSetSpec version. The default value is 10.
      optional int32 revisionHistoryLimit = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/generated.proto

      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
      // StatefulSetSpec version. The default value is 10.
      optional int32 revisionHistoryLimit = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util.go

    // old replicaSets. These replicaSets are mainly kept with the purpose of rollback.
    // The RevisionHistoryLimit can start from 0 (no retained replicasSet). When set to math.MaxInt32,
    // the Deployment will keep all revisions.
    func HasRevisionHistoryLimit(d *apps.Deployment) bool {
    	return d.Spec.RevisionHistoryLimit != nil && *d.Spec.RevisionHistoryLimit != math.MaxInt32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
      // StatefulSetSpec version. The default value is 10.
      optional int32 revisionHistoryLimit = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
      // StatefulSetSpec version. The default value is 10.
      optional int32 revisionHistoryLimit = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// This is set to the max value of int32 (i.e. 2147483647) by default, which
    	// means "retaining all old ReplicaSets".
    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// Indicates that the deployment is paused and will not be processed by the
    	// deployment controller.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top