Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for controllerrevisions (0.37 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/zz_generated.prerelease-lifecycle.go

    func (in *ControllerRevision) APILifecycleDeprecated() (major, minor int) {
    	return 1, 9
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *ControllerRevision) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/zz_generated.deepcopy.go

    func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Data.DeepCopyInto(&out.Data)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevision.
    func (in *ControllerRevision) DeepCopy() *ControllerRevision {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Deployment{},
    		&DeploymentList{},
    		&StatefulSet{},
    		&StatefulSetList{},
    		&DaemonSet{},
    		&DaemonSetList{},
    		&ReplicaSet{},
    		&ReplicaSetList{},
    		&ControllerRevision{},
    		&ControllerRevisionList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 21:19:04 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

      * `kubectl rollout` supports status and history for StatefulSet  ([#46669](https://github.com/kubernetes/kubernetes/pull/46669), [@kow3ns](https://github.com/kow3ns)).
    
      * Implement `kubectl get controllerrevisions` ([#46655](https://github.com/kubernetes/kubernetes/pull/46655), [@janetkuo](https://github.com/janetkuo))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/register.go

    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Deployment{},
    		&DeploymentList{},
    		&DeploymentRollback{},
    		&Scale{},
    		&StatefulSet{},
    		&StatefulSetList{},
    		&ControllerRevision{},
    		&ControllerRevisionList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.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: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. pkg/apis/apps/register.go

    		&DaemonSet{},
    		&DaemonSetList{},
    		&Deployment{},
    		&DeploymentList{},
    		&DeploymentRollback{},
    		&autoscaling.Scale{},
    		&StatefulSet{},
    		&StatefulSetList{},
    		&ControllerRevision{},
    		&ControllerRevisionList{},
    		&ReplicaSet{},
    		&ReplicaSetList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 22 19:26:49 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. pkg/apis/apps/validation/validation.go

    }
    
    // ValidateControllerRevisionUpdate collects errors pertaining to the mutation of an ControllerRevision Object. If the
    // returned ErrorList is empty the update operation is valid. Any mutation to the ControllerRevision's Data or Revision
    // is considered to be invalid.
    func ValidateControllerRevisionUpdate(newHistory, oldHistory *apps.ControllerRevision) field.ErrorList {
    	errs := field.ErrorList{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top