deploymentConfig, err := r.registry.GetDeploymentConfig(ctx, scale.Name) if err != nil { return nil, false, errors.NewNotFound(extensions.Resource("scale"), scale.Name) } deploymentConfig.Spec.Replicas = scale.Spec.Replicas if err := r.registry.UpdateDeploymentConfig(ctx, deploymentConfig); err != nil { return nil, false, err } return api.ScaleFromConfig(deploymentConfig), false, nil } // StatusREST implements the REST endpoint for changing the status of a DeploymentConfig. type StatusREST struct { store *registry.Store } // StatusREST implements the Updater interface. var _ = rest.Updater(&StatusREST{}) func (r *StatusREST) New() runtime.Object { return &api.DeploymentConfig{} } // Update alters the status subset of an deploymentConfig. func (r *StatusREST) Update(ctx kapi.Context, obj runtime.Object) (runtime.Object, bool, error) { return r.store.Update(ctx, obj) }
if !ok { return nil, fmt.Errorf("not a project: %#v", obj) } kapi.FillObjectMetaSystemFields(ctx, &project.ObjectMeta) s.createStrategy.PrepareForCreate(obj) if errs := s.createStrategy.Validate(ctx, obj); len(errs) > 0 { return nil, kerrors.NewInvalid(projectapi.Kind("Project"), project.Name, errs) } namespace, err := s.client.Create(convertProject(project)) if err != nil { return nil, err } return convertNamespace(namespace), nil } var _ = rest.Updater(&REST{}) func (s *REST) Update(ctx kapi.Context, obj runtime.Object) (runtime.Object, bool, error) { project, ok := obj.(*api.Project) if !ok { return nil, false, fmt.Errorf("not a project: %#v", obj) } oldObj, err := s.Get(ctx, project.Name) if err != nil { return nil, false, err } s.updateStrategy.PrepareForUpdate(obj, oldObj) if errs := s.updateStrategy.ValidateUpdate(ctx, obj, oldObj); len(errs) > 0 { return nil, false, kerrors.NewInvalid(projectapi.Kind("Project"), project.Name, errs) }