|
|
|
@ -0,0 +1,441 @@
|
|
|
|
|
package v1
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
|
|
"github.com/rancher/norman/controller"
|
|
|
|
|
"github.com/rancher/norman/objectclient"
|
|
|
|
|
v1 "k8s.io/api/apps/v1"
|
|
|
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
|
"k8s.io/apimachinery/pkg/watch"
|
|
|
|
|
"k8s.io/client-go/tools/cache"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
DeploymentGroupVersionKind = schema.GroupVersionKind{
|
|
|
|
|
Version: Version,
|
|
|
|
|
Group: GroupName,
|
|
|
|
|
Kind: "Deployment",
|
|
|
|
|
}
|
|
|
|
|
DeploymentResource = metav1.APIResource{
|
|
|
|
|
Name: "deployments",
|
|
|
|
|
SingularName: "deployment",
|
|
|
|
|
Namespaced: true,
|
|
|
|
|
|
|
|
|
|
Kind: DeploymentGroupVersionKind.Kind,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func NewDeployment(namespace, name string, obj v1.Deployment) *v1.Deployment {
|
|
|
|
|
obj.APIVersion, obj.Kind = DeploymentGroupVersionKind.ToAPIVersionAndKind()
|
|
|
|
|
obj.Name = name
|
|
|
|
|
obj.Namespace = namespace
|
|
|
|
|
return &obj
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentList struct {
|
|
|
|
|
metav1.TypeMeta `json:",inline"`
|
|
|
|
|
metav1.ListMeta `json:"metadata,omitempty"`
|
|
|
|
|
Items []v1.Deployment
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentHandlerFunc func(key string, obj *v1.Deployment) (runtime.Object, error)
|
|
|
|
|
|
|
|
|
|
type DeploymentChangeHandlerFunc func(obj *v1.Deployment) (runtime.Object, error)
|
|
|
|
|
|
|
|
|
|
type DeploymentLister interface {
|
|
|
|
|
List(namespace string, selector labels.Selector) (ret []*v1.Deployment, err error)
|
|
|
|
|
Get(namespace, name string) (*v1.Deployment, error)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentController interface {
|
|
|
|
|
Generic() controller.GenericController
|
|
|
|
|
Informer() cache.SharedIndexInformer
|
|
|
|
|
Lister() DeploymentLister
|
|
|
|
|
AddHandler(ctx context.Context, name string, handler DeploymentHandlerFunc)
|
|
|
|
|
AddClusterScopedHandler(ctx context.Context, name, clusterName string, handler DeploymentHandlerFunc)
|
|
|
|
|
Enqueue(namespace, name string)
|
|
|
|
|
Sync(ctx context.Context) error
|
|
|
|
|
Start(ctx context.Context, threadiness int) error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentInterface interface {
|
|
|
|
|
ObjectClient() *objectclient.ObjectClient
|
|
|
|
|
Create(*v1.Deployment) (*v1.Deployment, error)
|
|
|
|
|
GetNamespaced(namespace, name string, opts metav1.GetOptions) (*v1.Deployment, error)
|
|
|
|
|
Get(name string, opts metav1.GetOptions) (*v1.Deployment, error)
|
|
|
|
|
Update(*v1.Deployment) (*v1.Deployment, error)
|
|
|
|
|
Delete(name string, options *metav1.DeleteOptions) error
|
|
|
|
|
DeleteNamespaced(namespace, name string, options *metav1.DeleteOptions) error
|
|
|
|
|
List(opts metav1.ListOptions) (*DeploymentList, error)
|
|
|
|
|
Watch(opts metav1.ListOptions) (watch.Interface, error)
|
|
|
|
|
DeleteCollection(deleteOpts *metav1.DeleteOptions, listOpts metav1.ListOptions) error
|
|
|
|
|
Controller() DeploymentController
|
|
|
|
|
AddHandler(ctx context.Context, name string, sync DeploymentHandlerFunc)
|
|
|
|
|
AddLifecycle(ctx context.Context, name string, lifecycle DeploymentLifecycle)
|
|
|
|
|
AddClusterScopedHandler(ctx context.Context, name, clusterName string, sync DeploymentHandlerFunc)
|
|
|
|
|
AddClusterScopedLifecycle(ctx context.Context, name, clusterName string, lifecycle DeploymentLifecycle)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentLister struct {
|
|
|
|
|
controller *deploymentController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (l *deploymentLister) List(namespace string, selector labels.Selector) (ret []*v1.Deployment, err error) {
|
|
|
|
|
err = cache.ListAllByNamespace(l.controller.Informer().GetIndexer(), namespace, selector, func(obj interface{}) {
|
|
|
|
|
ret = append(ret, obj.(*v1.Deployment))
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (l *deploymentLister) Get(namespace, name string) (*v1.Deployment, error) {
|
|
|
|
|
var key string
|
|
|
|
|
if namespace != "" {
|
|
|
|
|
key = namespace + "/" + name
|
|
|
|
|
} else {
|
|
|
|
|
key = name
|
|
|
|
|
}
|
|
|
|
|
obj, exists, err := l.controller.Informer().GetIndexer().GetByKey(key)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if !exists {
|
|
|
|
|
return nil, errors.NewNotFound(schema.GroupResource{
|
|
|
|
|
Group: DeploymentGroupVersionKind.Group,
|
|
|
|
|
Resource: "deployment",
|
|
|
|
|
}, key)
|
|
|
|
|
}
|
|
|
|
|
return obj.(*v1.Deployment), nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentController struct {
|
|
|
|
|
controller.GenericController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *deploymentController) Generic() controller.GenericController {
|
|
|
|
|
return c.GenericController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *deploymentController) Lister() DeploymentLister {
|
|
|
|
|
return &deploymentLister{
|
|
|
|
|
controller: c,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *deploymentController) AddHandler(ctx context.Context, name string, handler DeploymentHandlerFunc) {
|
|
|
|
|
c.GenericController.AddHandler(ctx, name, func(key string, obj interface{}) (interface{}, error) {
|
|
|
|
|
if obj == nil {
|
|
|
|
|
return handler(key, nil)
|
|
|
|
|
} else if v, ok := obj.(*v1.Deployment); ok {
|
|
|
|
|
return handler(key, v)
|
|
|
|
|
} else {
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *deploymentController) AddClusterScopedHandler(ctx context.Context, name, cluster string, handler DeploymentHandlerFunc) {
|
|
|
|
|
c.GenericController.AddHandler(ctx, name, func(key string, obj interface{}) (interface{}, error) {
|
|
|
|
|
if obj == nil {
|
|
|
|
|
return handler(key, nil)
|
|
|
|
|
} else if v, ok := obj.(*v1.Deployment); ok && controller.ObjectInCluster(cluster, obj) {
|
|
|
|
|
return handler(key, v)
|
|
|
|
|
} else {
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentFactory struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c deploymentFactory) Object() runtime.Object {
|
|
|
|
|
return &v1.Deployment{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c deploymentFactory) List() runtime.Object {
|
|
|
|
|
return &DeploymentList{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Controller() DeploymentController {
|
|
|
|
|
s.client.Lock()
|
|
|
|
|
defer s.client.Unlock()
|
|
|
|
|
|
|
|
|
|
c, ok := s.client.deploymentControllers[s.ns]
|
|
|
|
|
if ok {
|
|
|
|
|
return c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
genericController := controller.NewGenericController(DeploymentGroupVersionKind.Kind+"Controller",
|
|
|
|
|
s.objectClient)
|
|
|
|
|
|
|
|
|
|
c = &deploymentController{
|
|
|
|
|
GenericController: genericController,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s.client.deploymentControllers[s.ns] = c
|
|
|
|
|
s.client.starters = append(s.client.starters, c)
|
|
|
|
|
|
|
|
|
|
return c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentClient struct {
|
|
|
|
|
client *Client
|
|
|
|
|
ns string
|
|
|
|
|
objectClient *objectclient.ObjectClient
|
|
|
|
|
controller DeploymentController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) ObjectClient() *objectclient.ObjectClient {
|
|
|
|
|
return s.objectClient
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Create(o *v1.Deployment) (*v1.Deployment, error) {
|
|
|
|
|
obj, err := s.objectClient.Create(o)
|
|
|
|
|
return obj.(*v1.Deployment), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Get(name string, opts metav1.GetOptions) (*v1.Deployment, error) {
|
|
|
|
|
obj, err := s.objectClient.Get(name, opts)
|
|
|
|
|
return obj.(*v1.Deployment), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) GetNamespaced(namespace, name string, opts metav1.GetOptions) (*v1.Deployment, error) {
|
|
|
|
|
obj, err := s.objectClient.GetNamespaced(namespace, name, opts)
|
|
|
|
|
return obj.(*v1.Deployment), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Update(o *v1.Deployment) (*v1.Deployment, error) {
|
|
|
|
|
obj, err := s.objectClient.Update(o.Name, o)
|
|
|
|
|
return obj.(*v1.Deployment), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Delete(name string, options *metav1.DeleteOptions) error {
|
|
|
|
|
return s.objectClient.Delete(name, options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) DeleteNamespaced(namespace, name string, options *metav1.DeleteOptions) error {
|
|
|
|
|
return s.objectClient.DeleteNamespaced(namespace, name, options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) List(opts metav1.ListOptions) (*DeploymentList, error) {
|
|
|
|
|
obj, err := s.objectClient.List(opts)
|
|
|
|
|
return obj.(*DeploymentList), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) Watch(opts metav1.ListOptions) (watch.Interface, error) {
|
|
|
|
|
return s.objectClient.Watch(opts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Patch applies the patch and returns the patched deployment.
|
|
|
|
|
func (s *deploymentClient) Patch(o *v1.Deployment, patchType types.PatchType, data []byte, subresources ...string) (*v1.Deployment, error) {
|
|
|
|
|
obj, err := s.objectClient.Patch(o.Name, o, patchType, data, subresources...)
|
|
|
|
|
return obj.(*v1.Deployment), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) DeleteCollection(deleteOpts *metav1.DeleteOptions, listOpts metav1.ListOptions) error {
|
|
|
|
|
return s.objectClient.DeleteCollection(deleteOpts, listOpts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) AddHandler(ctx context.Context, name string, sync DeploymentHandlerFunc) {
|
|
|
|
|
s.Controller().AddHandler(ctx, name, sync)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) AddLifecycle(ctx context.Context, name string, lifecycle DeploymentLifecycle) {
|
|
|
|
|
sync := NewDeploymentLifecycleAdapter(name, false, s, lifecycle)
|
|
|
|
|
s.Controller().AddHandler(ctx, name, sync)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) AddClusterScopedHandler(ctx context.Context, name, clusterName string, sync DeploymentHandlerFunc) {
|
|
|
|
|
s.Controller().AddClusterScopedHandler(ctx, name, clusterName, sync)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *deploymentClient) AddClusterScopedLifecycle(ctx context.Context, name, clusterName string, lifecycle DeploymentLifecycle) {
|
|
|
|
|
sync := NewDeploymentLifecycleAdapter(name+"_"+clusterName, true, s, lifecycle)
|
|
|
|
|
s.Controller().AddClusterScopedHandler(ctx, name, clusterName, sync)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentIndexer func(obj *v1.Deployment) ([]string, error)
|
|
|
|
|
|
|
|
|
|
type DeploymentClientCache interface {
|
|
|
|
|
Get(namespace, name string) (*v1.Deployment, error)
|
|
|
|
|
List(namespace string, selector labels.Selector) ([]*v1.Deployment, error)
|
|
|
|
|
|
|
|
|
|
Index(name string, indexer DeploymentIndexer)
|
|
|
|
|
GetIndexed(name, key string) ([]*v1.Deployment, error)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeploymentClient interface {
|
|
|
|
|
Create(*v1.Deployment) (*v1.Deployment, error)
|
|
|
|
|
Get(namespace, name string, opts metav1.GetOptions) (*v1.Deployment, error)
|
|
|
|
|
Update(*v1.Deployment) (*v1.Deployment, error)
|
|
|
|
|
Delete(namespace, name string, options *metav1.DeleteOptions) error
|
|
|
|
|
List(namespace string, opts metav1.ListOptions) (*DeploymentList, error)
|
|
|
|
|
Watch(opts metav1.ListOptions) (watch.Interface, error)
|
|
|
|
|
|
|
|
|
|
Cache() DeploymentClientCache
|
|
|
|
|
|
|
|
|
|
OnCreate(ctx context.Context, name string, sync DeploymentChangeHandlerFunc)
|
|
|
|
|
OnChange(ctx context.Context, name string, sync DeploymentChangeHandlerFunc)
|
|
|
|
|
OnRemove(ctx context.Context, name string, sync DeploymentChangeHandlerFunc)
|
|
|
|
|
Enqueue(namespace, name string)
|
|
|
|
|
|
|
|
|
|
Generic() controller.GenericController
|
|
|
|
|
ObjectClient() *objectclient.ObjectClient
|
|
|
|
|
Interface() DeploymentInterface
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentClientCache struct {
|
|
|
|
|
client *deploymentClient2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentClient2 struct {
|
|
|
|
|
iface DeploymentInterface
|
|
|
|
|
controller DeploymentController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Interface() DeploymentInterface {
|
|
|
|
|
return n.iface
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Generic() controller.GenericController {
|
|
|
|
|
return n.iface.Controller().Generic()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) ObjectClient() *objectclient.ObjectClient {
|
|
|
|
|
return n.Interface().ObjectClient()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Enqueue(namespace, name string) {
|
|
|
|
|
n.iface.Controller().Enqueue(namespace, name)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Create(obj *v1.Deployment) (*v1.Deployment, error) {
|
|
|
|
|
return n.iface.Create(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Get(namespace, name string, opts metav1.GetOptions) (*v1.Deployment, error) {
|
|
|
|
|
return n.iface.GetNamespaced(namespace, name, opts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Update(obj *v1.Deployment) (*v1.Deployment, error) {
|
|
|
|
|
return n.iface.Update(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Delete(namespace, name string, options *metav1.DeleteOptions) error {
|
|
|
|
|
return n.iface.DeleteNamespaced(namespace, name, options)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) List(namespace string, opts metav1.ListOptions) (*DeploymentList, error) {
|
|
|
|
|
return n.iface.List(opts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Watch(opts metav1.ListOptions) (watch.Interface, error) {
|
|
|
|
|
return n.iface.Watch(opts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClientCache) Get(namespace, name string) (*v1.Deployment, error) {
|
|
|
|
|
return n.client.controller.Lister().Get(namespace, name)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClientCache) List(namespace string, selector labels.Selector) ([]*v1.Deployment, error) {
|
|
|
|
|
return n.client.controller.Lister().List(namespace, selector)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) Cache() DeploymentClientCache {
|
|
|
|
|
n.loadController()
|
|
|
|
|
return &deploymentClientCache{
|
|
|
|
|
client: n,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) OnCreate(ctx context.Context, name string, sync DeploymentChangeHandlerFunc) {
|
|
|
|
|
n.loadController()
|
|
|
|
|
n.iface.AddLifecycle(ctx, name+"-create", &deploymentLifecycleDelegate{create: sync})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) OnChange(ctx context.Context, name string, sync DeploymentChangeHandlerFunc) {
|
|
|
|
|
n.loadController()
|
|
|
|
|
n.iface.AddLifecycle(ctx, name+"-change", &deploymentLifecycleDelegate{update: sync})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) OnRemove(ctx context.Context, name string, sync DeploymentChangeHandlerFunc) {
|
|
|
|
|
n.loadController()
|
|
|
|
|
n.iface.AddLifecycle(ctx, name, &deploymentLifecycleDelegate{remove: sync})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClientCache) Index(name string, indexer DeploymentIndexer) {
|
|
|
|
|
err := n.client.controller.Informer().GetIndexer().AddIndexers(map[string]cache.IndexFunc{
|
|
|
|
|
name: func(obj interface{}) ([]string, error) {
|
|
|
|
|
if v, ok := obj.(*v1.Deployment); ok {
|
|
|
|
|
return indexer(v)
|
|
|
|
|
}
|
|
|
|
|
return nil, nil
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClientCache) GetIndexed(name, key string) ([]*v1.Deployment, error) {
|
|
|
|
|
var result []*v1.Deployment
|
|
|
|
|
objs, err := n.client.controller.Informer().GetIndexer().ByIndex(name, key)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
for _, obj := range objs {
|
|
|
|
|
if v, ok := obj.(*v1.Deployment); ok {
|
|
|
|
|
result = append(result, v)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentClient2) loadController() {
|
|
|
|
|
if n.controller == nil {
|
|
|
|
|
n.controller = n.iface.Controller()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type deploymentLifecycleDelegate struct {
|
|
|
|
|
create DeploymentChangeHandlerFunc
|
|
|
|
|
update DeploymentChangeHandlerFunc
|
|
|
|
|
remove DeploymentChangeHandlerFunc
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentLifecycleDelegate) HasCreate() bool {
|
|
|
|
|
return n.create != nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentLifecycleDelegate) Create(obj *v1.Deployment) (runtime.Object, error) {
|
|
|
|
|
if n.create == nil {
|
|
|
|
|
return obj, nil
|
|
|
|
|
}
|
|
|
|
|
return n.create(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentLifecycleDelegate) HasFinalize() bool {
|
|
|
|
|
return n.remove != nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentLifecycleDelegate) Remove(obj *v1.Deployment) (runtime.Object, error) {
|
|
|
|
|
if n.remove == nil {
|
|
|
|
|
return obj, nil
|
|
|
|
|
}
|
|
|
|
|
return n.remove(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *deploymentLifecycleDelegate) Updated(obj *v1.Deployment) (runtime.Object, error) {
|
|
|
|
|
if n.update == nil {
|
|
|
|
|
return obj, nil
|
|
|
|
|
}
|
|
|
|
|
return n.update(obj)
|
|
|
|
|
}
|