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 aee30920 [charts] Initial obs yaml config (#458)
add 2b5cbc72 update admin backend api implementation
add cff779ea format code
add 57a9ecac format code
add dbdba894 Merge branch 'master' into admin-backend-api
add ceee858e format code
add 1e5b7f6d format code
new 1476dd16 Merge pull request #460 from chickenlj/admin-backend-api
The 1 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:
app/dubbo-cp/dubbo-cp.yaml | 20 +-
dubboctl/internal/docker/creds/credentials.go | 1 -
go.mod | 2 +-
go.sum | 4 +-
pkg/admin/handler/application.go | 6 +-
pkg/admin/handler/instance.go | 12 +-
pkg/admin/handler/observability.go | 10 +-
pkg/admin/handler/search.go | 60 +++++-
pkg/admin/handler/service.go | 6 +-
pkg/admin/model/application.go | 10 +-
pkg/admin/model/common.go | 11 +
pkg/admin/model/service.go | 57 +++---
pkg/admin/server/router.go | 1 +
pkg/admin/service/application.go | 138 ++++++++-----
pkg/admin/service/instance.go | 19 +-
pkg/admin/service/service.go | 83 ++++----
pkg/config/admin/config.go | 6 +-
pkg/config/observability/config.go | 17 +-
pkg/core/bootstrap/bootstrap.go | 13 +-
pkg/core/registry/application_context.go | 19 +-
pkg/core/registry/interface_context.go | 157 ++++++++++++++
.../registry/interface_service_changed_listener.go | 115 +++++------
pkg/core/registry/mapping.go | 2 +
pkg/core/registry/notify.go | 59 +++---
pkg/core/registry/registry.go | 137 +++++++------
.../service_instances_changed_listener_impl.go | 84 +++++++-
pkg/core/resources/store/options.go | 91 ++++++++-
pkg/core/runtime/builder.go | 22 ++
pkg/plugins/resources/k8s/store.go | 6 +-
pkg/plugins/resources/traditional/plugin.go | 5 +-
pkg/plugins/resources/traditional/store.go | 225 ++++++++++++---------
pkg/plugins/runtime/k8s/plugin.go | 2 +-
32 files changed, 981 insertions(+), 419 deletions(-)
create mode 100644 pkg/core/registry/interface_context.go