Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for statefulsets (0.17 sec)

  1. pkg/controller/statefulset/stateful_set_status_updater_test.go

    	updater := NewRealStatefulSetStatusUpdater(fakeClient, nil)
    	fakeClient.AddReactor("update", "statefulsets", func(action core.Action) (bool, runtime.Object, error) {
    		update := action.(core.UpdateAction)
    		sts := update.GetObject().(*apps.StatefulSet)
    		if sts.Status.ObservedGeneration != 3 {
    			t.Errorf("expected observedGeneration to be synced with generation for statefulset %q", sts.Name)
    		}
    		return true, sts, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. api/discovery/apis__apps__v1.json

        {
          "group": "autoscaling",
          "kind": "Scale",
          "name": "statefulsets/scale",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ],
          "version": "v1"
        },
        {
          "kind": "StatefulSet",
          "name": "statefulsets/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_status_updater.go

    		// TODO: This context.TODO should use a real context once we have RetryOnConflictWithContext
    		_, updateErr := ssu.client.AppsV1().StatefulSets(set.Namespace).UpdateStatus(context.TODO(), set, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return nil
    		}
    		if updated, err := ssu.setLister.StatefulSets(set.Namespace).Get(set.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    			set = updated.DeepCopy()
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. releasenotes/notes/48207.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 48207
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 02:31:37 UTC 2023
    - 229 bytes
    - Viewed (0)
  5. pkg/registry/apps/rest/storage_apps.go

    		storage[resource+"/scale"] = deploymentStorage.Scale
    	}
    
    	// statefulsets
    	if resource := "statefulsets"; apiResourceConfigSource.ResourceEnabled(appsapiv1.SchemeGroupVersion.WithResource(resource)) {
    		statefulSetStorage, err := statefulsetstore.NewStorage(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = statefulSetStorage.StatefulSet
    		storage[resource+"/status"] = statefulSetStorage.Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kube-controller-manager/app/apps.go

    		controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
    		controllerContext.ClientBuilder.ClientOrDie("statefulset-controller"),
    	).Run(ctx, int(controllerContext.ComponentConfig.StatefulSetController.ConcurrentStatefulSetSyncs))
    	return nil, true, nil
    }
    
    func newReplicaSetControllerDescriptor() *ControllerDescriptor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. pkg/controlplane/storageversionhashdata/data.go

    	"apps/v1/deployments":                                               "8aSe+NMegvE=",
    	"apps/v1/replicasets":                                               "P1RzHs8/mWQ=",
    	"apps/v1/statefulsets":                                              "H+vl74LkKdo=",
    	"admissionregistration.k8s.io/v1/mutatingwebhookconfigurations":     "Sqi0GUgDaX0=",
    	"admissionregistration.k8s.io/v1/validatingwebhookconfigurations":   "B0wHjQmsGNk=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top