k3s/pkg/registry/experimental/controller/etcd/etcd.go

131 lines
3.8 KiB
Go
Raw Normal View History

2015-08-06 16:53:34 +00:00
/*
Copyright 2014 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package etcd
import (
"fmt"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/storage"
"k8s.io/kubernetes/pkg/registry/controller"
"k8s.io/kubernetes/pkg/registry/controller/etcd"
2015-11-05 15:04:42 +00:00
"k8s.io/kubernetes/pkg/registry/generic"
2015-08-06 16:53:34 +00:00
2015-10-09 22:04:41 +00:00
"k8s.io/kubernetes/pkg/apis/extensions"
extvalidation "k8s.io/kubernetes/pkg/apis/extensions/validation"
2015-08-06 16:53:34 +00:00
)
// Container includes dummy storage for RC pods and experimental storage for Scale.
type ContainerStorage struct {
ReplicationController *RcREST
Scale *ScaleREST
}
2015-11-05 15:04:42 +00:00
func NewStorage(s storage.Interface, storageDecorator generic.StorageDecorator) ContainerStorage {
// scale does not set status, only updates spec so we ignore the status
2015-11-05 15:04:42 +00:00
controllerREST, _ := etcd.NewREST(s, storageDecorator)
rcRegistry := controller.NewRegistry(controllerREST)
2015-08-06 16:53:34 +00:00
return ContainerStorage{
ReplicationController: &RcREST{},
Scale: &ScaleREST{registry: &rcRegistry},
}
}
type ScaleREST struct {
registry *controller.Registry
}
// ScaleREST implements Patcher
2015-08-06 16:53:34 +00:00
var _ = rest.Patcher(&ScaleREST{})
// New creates a new Scale object
func (r *ScaleREST) New() runtime.Object {
2015-10-09 22:49:10 +00:00
return &extensions.Scale{}
2015-08-06 16:53:34 +00:00
}
func (r *ScaleREST) Get(ctx api.Context, name string) (runtime.Object, error) {
rc, err := (*r.registry).GetController(ctx, name)
if err != nil {
2015-12-10 18:32:29 +00:00
return nil, errors.NewNotFound(extensions.Resource("replicationcontrollers/scale"), name)
2015-08-06 16:53:34 +00:00
}
2015-10-09 22:49:10 +00:00
return &extensions.Scale{
2015-08-06 16:53:34 +00:00
ObjectMeta: api.ObjectMeta{
Name: name,
Namespace: rc.Namespace,
CreationTimestamp: rc.CreationTimestamp,
},
2015-10-09 22:49:10 +00:00
Spec: extensions.ScaleSpec{
2015-08-06 16:53:34 +00:00
Replicas: rc.Spec.Replicas,
},
2015-10-09 22:49:10 +00:00
Status: extensions.ScaleStatus{
2015-08-06 16:53:34 +00:00
Replicas: rc.Status.Replicas,
Selector: rc.Spec.Selector,
},
}, nil
}
func (r *ScaleREST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error) {
if obj == nil {
return nil, false, errors.NewBadRequest(fmt.Sprintf("nil update passed to Scale"))
}
2015-10-09 22:49:10 +00:00
scale, ok := obj.(*extensions.Scale)
2015-08-06 16:53:34 +00:00
if !ok {
return nil, false, errors.NewBadRequest(fmt.Sprintf("wrong object passed to Scale update: %v", obj))
}
if errs := extvalidation.ValidateScale(scale); len(errs) > 0 {
2015-12-10 18:32:29 +00:00
return nil, false, errors.NewInvalid(extensions.Kind("Scale"), scale.Name, errs)
}
rc, err := (*r.registry).GetController(ctx, scale.Name)
2015-08-06 16:53:34 +00:00
if err != nil {
2015-12-10 18:32:29 +00:00
return nil, false, errors.NewNotFound(extensions.Resource("replicationcontrollers/scale"), scale.Name)
2015-08-06 16:53:34 +00:00
}
rc.Spec.Replicas = scale.Spec.Replicas
2015-08-06 16:53:34 +00:00
rc, err = (*r.registry).UpdateController(ctx, rc)
if err != nil {
2015-12-10 18:32:29 +00:00
return nil, false, errors.NewConflict(extensions.Resource("replicationcontrollers/scale"), scale.Name, err)
2015-08-06 16:53:34 +00:00
}
2015-10-09 22:49:10 +00:00
return &extensions.Scale{
2015-08-06 16:53:34 +00:00
ObjectMeta: api.ObjectMeta{
Name: rc.Name,
Namespace: rc.Namespace,
CreationTimestamp: rc.CreationTimestamp,
},
2015-10-09 22:49:10 +00:00
Spec: extensions.ScaleSpec{
2015-08-06 16:53:34 +00:00
Replicas: rc.Spec.Replicas,
},
2015-10-09 22:49:10 +00:00
Status: extensions.ScaleStatus{
2015-08-06 16:53:34 +00:00
Replicas: rc.Status.Replicas,
Selector: rc.Spec.Selector,
},
}, false, nil
}
// Dummy implementation
type RcREST struct{}
func (r *RcREST) New() runtime.Object {
2015-10-09 22:49:10 +00:00
return &extensions.ReplicationControllerDummy{}
2015-08-06 16:53:34 +00:00
}