Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for controllerrevisions (0.46 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.ControllerRevision.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 506 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/apps/validation/validation_test.go

    			}
    		})
    	}
    }
    
    func TestValidateControllerRevision(t *testing.T) {
    	newControllerRevision := func(name, namespace string, data runtime.Object, revision int64) apps.ControllerRevision {
    		return apps.ControllerRevision{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      name,
    				Namespace: namespace,
    			},
    			Data:     data,
    			Revision: revision,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/printers/internalversion/printers_test.go

    		t.Errorf("mismatch: %s", cmp.Diff(expectedRows, rows))
    	}
    }
    
    func TestPrintControllerRevision(t *testing.T) {
    	tests := []struct {
    		history  apps.ControllerRevision
    		expected []metav1.TableRow
    	}{
    		{
    			history: apps.ControllerRevision{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "test1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Controller", Type: "string", Description: "Controller of the object"},
    		{Name: "Revision", Type: "string", Description: appsv1beta1.ControllerRevision{}.SwaggerDoc()["revision"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(controllerRevisionColumnDefinition, printControllerRevision)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top