Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for StatefulSetSpec (0.23 sec)

  1. common-protos/k8s.io/api/apps/v1/generated.proto

      // `Delete` policy causes the associated PVCs for any excess pods above
      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.proto

      // `Delete` policy causes the associated PVCs for any excess pods above
      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    	// +optional
    	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    type StatefulSetSpec struct {
    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	return map_StatefulSetPersistentVolumeClaimRetentionPolicy
    }
    
    var map_StatefulSetSpec = map[string]string{
    	"":                                     "A StatefulSetSpec is the specification of a StatefulSet.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // `Delete` policy causes the associated PVCs for any excess pods above
      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // `Delete` policy causes the associated PVCs for any excess pods above
      // the replica count to be deleted.
      optional string whenScaled = 2;
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    message StatefulSetSpec {
      // replicas is the desired number of replicas of the given Template.
      // These are replicas in the sense that they are instantiations of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    	// +optional
    	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    type StatefulSetSpec struct {
    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. pkg/config/schema/collections/collections.gen.go

    		Identifier:    "StatefulSet",
    		Group:         "apps",
    		Kind:          "StatefulSet",
    		Plural:        "statefulsets",
    		Version:       "v1",
    		Proto:         "k8s.io.api.apps.v1.StatefulSetSpec",
    		ReflectType:   reflect.TypeOf(&k8sioapiappsv1.StatefulSetSpec{}).Elem(),
    		ProtoPackage:  "k8s.io/api/apps/v1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  9. pkg/config/schema/metadata.yaml

        protoPackage: "k8s.io/api/apps/v1"
    
      - kind: "StatefulSet"
        plural: "statefulsets"
        group: "apps"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.apps.v1.StatefulSetSpec"
        protoPackage: "k8s.io/api/apps/v1"
    
      - kind: "Secret"
        plural: "secrets"
        version: "v1"
        builtin: true
        specless: true
        proto: "k8s.io.api.core.v1.Secret"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/apis/apps/validation/validation_test.go

    func mkStatefulSet(template *api.PodTemplate, tweaks ...statefulSetTweak) apps.StatefulSet {
    	ss := apps.StatefulSet{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    		Spec: apps.StatefulSetSpec{
    			PodManagementPolicy: apps.OrderedReadyPodManagement,
    			Selector:            &metav1.LabelSelector{MatchLabels: map[string]string{"a": "b"}},
    			Template:            template.Template,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
Back to top