Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 309 for statefulsets (0.22 sec)

  1. pkg/controller/statefulset/config/types.go

    // StatefulSetControllerConfiguration contains elements describing StatefulSetController.
    type StatefulSetControllerConfiguration struct {
    	// concurrentStatefulSetSyncs is the number of statefulset objects that are
    	// allowed to sync concurrently. Larger number = more responsive statefulsets,
    	// but more CPU (and network) load.
    	ConcurrentStatefulSetSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 956 bytes
    - Viewed (0)
  2. pkg/registry/apps/statefulset/storage/storage_test.go

    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.StatefulSet.Store.DestroyFunc()
    
    	name := "foo"
    
    	var sts apps.StatefulSet
    	ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), metav1.NamespaceDefault)
    	key := "/statefulsets/" + metav1.NamespaceDefault + "/" + name
    	if err := storage.StatefulSet.Storage.Create(ctx, key, &validStatefulSet, &sts, 0, false); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/framework/fake_listers.go

    // StatefulSetLister implements ControllerLister on []appsv1.StatefulSet for testing purposes.
    type StatefulSetLister []*appsv1.StatefulSet
    
    // List returns stateful sets.
    func (f StatefulSetLister) List(labels.Selector) ([]*appsv1.StatefulSet, error) {
    	return f, nil
    }
    
    // GetPodStatefulSets gets the StatefulSets that have the selector that match the labels on the given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentStatefulSetSyncs, "concurrent-statefulset-syncs", o.ConcurrentStatefulSetSyncs, "The number of statefulset objects that are allowed to sync concurrently. Larger number = more responsive statefulsets, but more CPU (and network) load")
    }
    
    // ApplyTo fills up StatefulSetController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - daemonsets/status
        - deployments
        - deployments/scale
        - deployments/status
        - replicasets
        - replicasets/scale
        - replicasets/status
        - statefulsets
        - statefulsets/scale
        - statefulsets/status
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - autoscaling
        resources:
        - horizontalpodautoscalers
        - horizontalpodautoscalers/status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/fake.go

    	Expansions: map[string][]schema.GroupResource{
    		"all": {
    			{Group: "", Resource: "pods"},
    			{Group: "", Resource: "replicationcontrollers"},
    			{Group: "", Resource: "services"},
    			{Group: "apps", Resource: "statefulsets"},
    			{Group: "autoscaling", Resource: "horizontalpodautoscalers"},
    			{Group: "batch", Resource: "jobs"},
    			{Group: "batch", Resource: "cronjobs"},
    			{Group: "extensions", Resource: "daemonsets"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/statefulset.yaml.injected

              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: hello
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/statefulsets/hello
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/policy.go

    		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
    		controllerContext.InformerFactory.Apps().V1().Deployments(),
    		controllerContext.InformerFactory.Apps().V1().StatefulSets(),
    		client,
    		controllerContext.RESTMapper,
    		scaleClient,
    		client.Discovery(),
    	).Run(ctx)
    	return nil, true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["daemonsets", "replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["statefulsets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["batch"]
        resources: ["jobs"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["policy"]
        resources: ["poddisruptionbudgets"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. pkg/kube/inject/initializer.go

    		{batchv1.SchemeGroupVersion, &batchv1.Job{}, "jobs", "/apis"},
    		{batchv1.SchemeGroupVersion, &batchv1.CronJob{}, "cronjobs", "/apis"},
    
    		{appsv1.SchemeGroupVersion, &appsv1.StatefulSet{}, "statefulsets", "/apis"},
    
    		{v1.SchemeGroupVersion, &v1.List{}, "lists", "/apis"},
    
    		{openshiftv1.GroupVersion, &openshiftv1.DeploymentConfig{}, "deploymentconfigs", "/apis"},
    	}
    	injectScheme = runtime.NewScheme()
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top