Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for controllerrevisions (0.42 sec)

  1. pkg/controller/daemon/update.go

    func (dsc *DaemonSetsController) constructHistory(ctx context.Context, ds *apps.DaemonSet) (cur *apps.ControllerRevision, old []*apps.ControllerRevision, err error) {
    	var histories []*apps.ControllerRevision
    	var currentHistories []*apps.ControllerRevision
    	histories, err = dsc.controlledHistories(ctx, ds)
    	if err != nil {
    		return nil, nil, err
    	}
    	for _, history := range histories {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    		return fresh, nil
    	})
    }
    
    // adoptOrphanRevisions adopts any orphaned ControllerRevisions matched by set's Selector.
    func (ssc *StatefulSetController) adoptOrphanRevisions(ctx context.Context, set *apps.StatefulSet) error {
    	revisions, err := ssc.control.ListRevisions(set)
    	if err != nil {
    		return err
    	}
    	orphanRevisions := make([]*apps.ControllerRevision, 0)
    	for i := range revisions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/controlplane/storageversionhashdata/data.go

    	"storage.k8s.io/v1/csistoragecapacities":                            "xeVl+2Ly1kE=",
    	"storage.k8s.io/v1/volumeattachments":                               "tJx/ezt6UDU=",
    	"apps/v1/controllerrevisions":                                       "85nkx63pcBU=",
    	"apps/v1/daemonsets":                                                "dd7pWHUlMKQ=",
    	"apps/v1/deployments":                                               "8aSe+NMegvE=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    type ControllerRevision struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

          "io.k8s.api.apps.v1.ControllerRevision": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    	patch, err := json.Marshal(objCopy)
    	return patch, err
    }
    
    // newRevision creates a new ControllerRevision containing a patch that reapplies the target state of set.
    // The Revision of the returned ControllerRevision is set to revision. If the returned error is nil, the returned
    // ControllerRevision is valid. StatefulSet revisions are stored as patches that re-apply the current state of 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)
  7. pkg/api/testing/unstructured_test.go

    			{Version: "v1", Kind: "List"},
    			{Group: "apps", Version: "v1beta1", Kind: "ControllerRevision"},
    			{Group: "apps", Version: "v1beta1", Kind: "ControllerRevisionList"},
    			{Group: "apps", Version: "v1beta2", Kind: "ControllerRevision"},
    			{Group: "apps", Version: "v1beta2", Kind: "ControllerRevisionList"},
    			{Group: "apps", Version: "v1", Kind: "ControllerRevision"},
    			{Group: "apps", Version: "v1", Kind: "ControllerRevisionList"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. 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 *ControllerRevision) 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)
  9. api/openapi-spec/swagger.json

              "group": "apps",
              "kind": "ControllerRevision",
              "version": "v1"
            }
          }
        },
        "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": {
          "delete": {
            "consumes": [
              "*/*"
            ],
            "description": "delete a ControllerRevision",
            "operationId": "deleteAppsV1NamespacedControllerRevision",
            "parameters": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    			SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top