Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for statefulsets (0.28 sec)

  1. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *StatefulSet) APILifecycleIntroduced() (major, minor int) {
    	return 1, 9
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    - `CSIMigrationvSphere` feature is now enabled by default.
       ([#103523](https://github.com/kubernetes/kubernetes/pull/103523), [@divyenpatel](https://github.com/divyenpatel))
    - `MaxUnavailable` for `StatefulSets`, allows faster `RollingUpdate` by taking down more than 1 pod at a time.
      The number of pods you want to take down during a `RollingUpdate` is configurable using `maxUnavailable` parameter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/values.yaml

        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Default resources allocated
        defaultResources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	resourcequotaconfig "k8s.io/kubernetes/pkg/controller/resourcequota/config"
    	serviceaccountconfig "k8s.io/kubernetes/pkg/controller/serviceaccount/config"
    	statefulsetconfig "k8s.io/kubernetes/pkg/controller/statefulset/config"
    	ttlafterfinishedconfig "k8s.io/kubernetes/pkg/controller/ttlafterfinished/config"
    	validatingadmissionpolicystatusconfig "k8s.io/kubernetes/pkg/controller/validatingadmissionpolicystatus/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"command":                  "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// owner: @mattcary
    	// alpha: v1.22
    	// beta: v1.27
    	//
    	// Enables policies controlling deletion of PVCs created by a StatefulSet.
    	StatefulSetAutoDeletePVC featuregate.Feature = "StatefulSetAutoDeletePVC"
    
    	// owner: @psch
    	// alpha: v1.26
    	// beta: v1.27
    	//
    	// Enables a StatefulSet to start from an arbitrary non zero ordinal
    	StatefulSetStartOrdinal featuregate.Feature = "StatefulSetStartOrdinal"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/containers/images
      // This field is optional to allow higher level config management to default or override
      // container images in workload controllers like Deployments and StatefulSets.
      // +optional
      optional string image = 2;
    
      // Entrypoint array. Not executed within a shell.
      // The container image's ENTRYPOINT is used if this is not provided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crdclient/types.gen.go

    				Generation:        obj.Generation,
    			},
    			Spec:   &obj.Spec,
    			Status: &obj.Status,
    		}
    	},
    	gvk.StatefulSet: func(r runtime.Object) config.Config {
    		obj := r.(*k8sioapiappsv1.StatefulSet)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.StatefulSet,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_pod_control_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package statefulset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top