Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for statefulsets (0.17 sec)

  1. pkg/config/schema/metadata.yaml

        plural: "daemonsets"
        group: "apps"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.apps.v1.DaemonSetSpec"
        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"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/registry/apps/statefulset/strategy_test.go

    	}
    }
    
    // generateStatefulSetWithMinReadySeconds generates a StatefulSet with min values
    func generateStatefulSetWithMinReadySeconds(minReadySeconds int32) *apps.StatefulSet {
    	return &apps.StatefulSet{
    		Spec: apps.StatefulSetSpec{
    			MinReadySeconds: minReadySeconds,
    		},
    	}
    }
    
    func makeStatefulSetWithMaxUnavailable(maxUnavailable *int) *apps.StatefulSet {
    	rollingUpdate := apps.RollingUpdateStatefulSetStrategy{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

    ## Additional labels to include with deployment or statefulset
    additionalLabels: {}
    
    ## Additional annotations to include with deployment or statefulset
    additionalAnnotations: {}
    
    ## Typically the deployment/statefulset includes checksums of secrets/config,
    ## So that when these change on a subsequent helm install, the deployment/statefulset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"currentReplicas":    "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
    	"updatedReplicas":    "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
    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. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.ValidateSidecar,
    	}.MustBuild()
    
    	StatefulSet = resource.Builder{
    		Identifier:    "StatefulSet",
    		Group:         "apps",
    		Kind:          "StatefulSet",
    		Plural:        "statefulsets",
    		Version:       "v1",
    		Proto:         "k8s.io.api.apps.v1.StatefulSetSpec",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    	if err != nil {
    		t.Fatalf("Unexpected error naming ReplicaSet %q: %v", rs.Name, err)
    	}
    
    	return rs, rsName
    }
    
    func newStatefulSet(t *testing.T, size int32) (*apps.StatefulSet, string) {
    	ss := &apps.StatefulSet{
    		TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    		ObjectMeta: metav1.ObjectMeta{
    			UID:             uuid.NewUUID(),
    			Name:            "foobar",
    			Namespace:       metav1.NamespaceDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      optional int32 readyReplicas = 3;
    
      // currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // StatefulSetStatus represents the current state of a StatefulSet.
    type StatefulSetStatus struct {
    	// observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
    	// StatefulSet's generation, which is updated on mutation by the API Server.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption.go

    	if !ok || err != nil {
    		return nil, err
    	}
    	ss, err := dc.ssLister.StatefulSets(namespace).Get(controllerRef.Name)
    	if err != nil {
    		// The only possible error is NotFound, which is ok here.
    		return nil, nil
    	}
    	if ss.UID != controllerRef.UID {
    		return nil, nil
    	}
    
    	return &controllerAndScale{ss.UID, *(ss.Spec.Replicas)}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    			if c.expectedError != "" || c.skipWebhook {
    				return
    			}
    			// Next run the webhook test. This one is a bit trickier as the webhook operates
    			// on Pods, but the inputs are Deployments/StatefulSets/etc. As a result, we need
    			// to convert these to pods, then run the injection This test will *not*
    			// overwrite golden files, as we do not have identical textual output as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top