Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 74 for statefulsets (0.27 sec)

  1. pkg/controller/statefulset/stateful_set_control.go

    		logger.V(4).Info("StatefulSet is waiting for Pod to be Available prior to scale down",
    			"statefulSet", klog.KObj(set), "pod", klog.KObj(firstUnhealthyPod))
    		return true, nil
    	}
    
    	logger.V(2).Info("Pod of StatefulSet is terminating for scale down",
    		"statefulSet", klog.KObj(set), "pod", klog.KObj(condemned[i]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_utils.go

    // ControllerRevision is valid. StatefulSet revisions are stored as patches that re-apply the current state of set
    // to a new StatefulSet using a strategic merge patch to replace the saved state of the new StatefulSet.
    func newRevision(set *apps.StatefulSet, revision int64, collisionCount *int32) (*apps.ControllerRevision, error) {
    	patch, err := getPatch(set)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    }
    
    func statefulsetComplete(statefulset *appsv1.StatefulSet) bool {
    	return statefulset.Status.UpdatedReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.Replicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.AvailableReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ReadyReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ObservedGeneration >= statefulset.Generation
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/config/schema/gvr/resources.gen.go

    	Sidecar_v1                     = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1", Resource: "sidecars"}
    	StatefulSet                    = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "statefulsets"}
    	TCPRoute                       = schema.GroupVersionResource{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Resource: "tcproutes"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. samples/addons/kiali.yaml

    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    - apiGroups: ["extensions", "apps"]
      resources:
      - daemonsets
      - deployments
      - replicasets
      - statefulsets
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["batch"]
      resources:
      - cronjobs
      - jobs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. common-protos/k8s.io/api/apps/v1beta1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/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: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top