This is an automated email from the ASF dual-hosted git repository.
liujun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git
from 57cfc18a Merge pull request #121 from
yuluo-yx/1220/yuluo-fix-update-link
new 64f7c156 refactor: subscribe to registry
new 11ac46fa fix: bad urlIdsMapper scope
new ce828d84 refactor: universal cache implement
new 17ec583c feat: add kube cache impl
new 1936b650 feat: basic cache architecture
new 19c7f7c5 feat: define cache methods and impl kubernetes cache
new e80cb3e3 feat: partially impl universal cache
new e5748081 feat: impl universal cache completely
new 7e48a405 fix: import
new 16d49371 fix: license header
new 3c77104e fix: format
new 6efa6b63 Merge pull request #113 from ev1lQuark/feat-78
The 973 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
pkg/admin/bootstrap.go | 13 +-
pkg/admin/cache/cache.go | 71 +++
pkg/admin/cache/registry/extension.go | 7 +-
pkg/admin/cache/registry/kube/cache.go | 445 +++++++++++++++++++
pkg/admin/cache/registry/kube/registry.go | 27 +-
pkg/admin/cache/registry/universal/cache.go | 491 +++++++++++++++++++++
pkg/admin/cache/registry/universal/registry.go | 84 ++--
.../admin/cache/selector/selector.go | 31 +-
.../config.go => admin/constant/kubenetes.go} | 35 +-
pkg/admin/model/consumer.go | 20 +-
pkg/admin/model/provider.go | 40 +-
pkg/admin/services/registry_service_sync.go | 201 ---------
12 files changed, 1178 insertions(+), 287 deletions(-)
create mode 100644 pkg/admin/cache/cache.go
create mode 100644 pkg/admin/cache/registry/kube/cache.go
create mode 100644 pkg/admin/cache/registry/universal/cache.go
copy app/dubboctl/internal/dubbo/templates_embedded.go =>
pkg/admin/cache/selector/selector.go (61%)
copy pkg/{config/config.go => admin/constant/kubenetes.go} (52%)
delete mode 100644 pkg/admin/services/registry_service_sync.go