K8s源码分析(13)-资源的服务层接口定义

上一篇文章中,我们主要介绍了 kubernetes 资源的数据访问层, 包括接口以及相关的 etcd3 数据访问层实现,支持 dry run 的数据访问层实现。在本篇文章里, 我们主要来介绍资源的服务层接口。

在数据服务层的设计上,也是秉承接口和实现的原则,定义接口功能,由相关的具体实现类来实现功能。kubernetes 在服务层上定义分为两大类,一类是增删改查类接口,定义增删改查 watch 等操作。另一类是操作的策略类型接口,用来定义资源在增删改查等不同操作中的逻辑。

对于增删改查类接口定义,图解和源码如下:

22adac5c3a47fbb6af4d7afb46423a19.png

// staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go
type Storage interface {
    New() runtime.Object
}


type Scoper interface {
  NamespaceScoped() bool
}
type Getter interface {
  Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
}
type Lister interface {
  NewList() runtime.Object
  List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
  TableConvertor
}
type Watcher interface {
  Watch(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error)
}
type Creater interface {
  New() runtime.Object
  Create(ctx context.Context, obj runtime.Object, createValidation ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
}
type Updater interface {
  New() runtime.Object
  Update(ctx context.Context, name string, objInfo UpdatedObjectInfo, createValidation ValidateObjectFunc, updateValidation ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
}
type CreaterUpdater interface {
  Creater
  Update(ctx context.Context, name string, objInfo UpdatedObjectInfo, createValidation ValidateObjectFunc, updateValidation ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
}
type GracefulDeleter interface {
  Delete(ctx context.Context, name string, deleteValidation ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error)
}
type CollectionDeleter interface {
  DeleteCollection(ctx context.Context, deleteValidation ValidateObjectFunc, options *metav1.DeleteOptions, listOptions *metainternalversion.ListOptions) (runtime.Object, error)
}
type StandardStorage interface {
  Getter
  Lister
  CreaterUpdater
  GracefulDeleter
  CollectionDeleter
  Watcher
}
  • 对于不同的增删改查以及 watch 操作均有不同类型的独立接口与之对应定义,例如 Storage, Getter, Lister, Creater, Updater, Watcher 等等。

  • 有聚合类型接口 StandardStorage 封装了一些独立接口功能。

对于操作类策略接口定义,图解和源码如下:

7ff1f64054d84b3c558f42a0fe70ee19.png

// k8s.io/apiserver/pkg/registry/rest/create.go
type RESTCreateStrategy interface {
  runtime.ObjectTyper
  names.NameGenerator
  NamespaceScoped() bool
  PrepareForCreate(ctx context.Context, obj runtime.Object)
  Validate(ctx context.Context, obj runtime.Object) field.ErrorList
  Canonicalize(obj runtime.Object)
}
// k8s.io/apiserver/pkg/registry/rest/update.go
type RESTUpdateStrategy interface {
  runtime.ObjectTyper
  NamespaceScoped() bool
  AllowCreateOnUpdate() bool
  PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
  ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList
  Canonicalize(obj runtime.Object)
  AllowUnconditionalUpdate() bool
}
// k8s.io/apiserver/pkg/registry/rest/create_update.go
type RESTCreateUpdateStrategy interface {
  RESTCreateStrategy
  AllowCreateOnUpdate() bool
  PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
  ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList
  AllowUnconditionalUpdate() bool
}
// k8s.io/apiserver/pkg/registry/rest/delete.go
type RESTDeleteStrategy interface {
  runtime.ObjectTyper
}
  • 操作策略类会定义创建操作策略,更新操作策略,创建或更新操作策略,删除操作策略等独立接口,这些定义都涉及到了资源的持久化操作。

  • 策略类接口被定义在不同文件中, 例如 create.go/update.go/create_update.go/delete.go 等等。

目前先我们写到这里,在下一篇文章中我们继续来介绍资源数据服务层接口的实现。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值