This is an automated email from the ASF dual-hosted git repository.

liujun pushed a change to branch refactor-with-go-package
in repository https://gitbox.apache.org/repos/asf/dubbo-admin.git


    from 3b3642b1 go fmt
     add 0f37fe18 Bump github.com/docker/docker (#1083)
     add ee872273 Bump github.com/containerd/containerd from 1.6.15 to 1.6.18 
(#1084)
     add 5f01cb04 add readme (#1085)
     add dd34b641 fix function name (#1088)
     add 9addd977 add build and push docker images for cross-platform support 
(#1089)
     add f3ced2ed refactor: use pure-go (without cgo) implementation of SQLite 
driver in Service Mock (#1090)
     new 2947773a Merge branch 'refactor-with-go' of 
https://github.com/apache/dubbo-admin into refactor-with-go
     add 63429ac1 change admin configmap (#1093)
     add 35d38ebd add logger wrapper (#1094)
     add 649b5f16 dubboctl enhancement (#1095)
     add d6d2c872 Fix and optimize nacos (#1096)
     add ac77051c Bump github.com/gin-gonic/gin from 1.8.2 to 1.9.0 (#1097)
     add 6a802620 Fix admin startup errors (#1100)
     new d1b21a26 Merge branch 'refactor-with-go' of 
https://github.com/apache/dubbo-admin into refactor-with-go
     new beb77d64 Merge branch 'refactor-with-go' into refactor-with-go-package
     new df781a51 update config logger

The 4 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:
 Dockerfile                                         |   9 +-
 Makefile                                           |  28 +-
 cmd/authority/app/authority.go                     |   9 +-
 deploy/charts/dubbo-admin/README.md                |  22 +
 deploy/charts/dubbo-admin/templates/_charts.tpl    |   4 +-
 deploy/charts/dubbo-admin/templates/configmap.yaml | 104 +++
 .../charts/dubbo-admin/templates/deployment.yaml   |   4 +-
 deploy/charts/dubbo-admin/templates/secret.yaml    |  28 -
 deploy/charts/dubbo-admin/values.yaml              | 256 ++++---
 deploy/charts/nacos/README.md                      |  93 +++
 .../{dubbo-admin => nacos}/templates/NOTES.txt     |   0
 deploy/charts/nacos/templates/_charts.tpl          |  20 +-
 deploy/charts/nacos/templates/configmap.yaml       |   2 -
 .../charts/nacos/templates/extra-list.yaml         |  10 +-
 deploy/charts/nacos/templates/statefulset.yaml     |  19 +-
 deploy/charts/nacos/templates/svc-headless.yaml    |   2 -
 deploy/charts/nacos/templates/svc.yaml             |   2 -
 deploy/charts/nacos/values.yaml                    |  44 +-
 go.mod                                             |  32 +-
 go.sum                                             |  63 +-
 pkg/admin/config/config.go                         |  28 +-
 pkg/admin/services/provider_service_impl.go        |   2 +-
 pkg/dubboctl/cmd/manifest.go                       |   2 +
 pkg/dubboctl/cmd/manifest_test.go                  |  84 ++-
 .../user.yaml => diff/profileA.yaml}               |   2 +
 .../user.yaml => diff/profileB.yaml}               |   8 +-
 .../apis/dubbo.apache.org/v1alpha1/types.go        |  11 +-
 pkg/dubboctl/internal/cmd/manifest_diff.go         | 174 +++++
 .../cmd/{manifest.go => manifest_generate.go}      |   3 +-
 .../cmd/{install.go => manifest_install.go}        |   2 +-
 .../cmd/{install.go => manifest_uninstall.go}      |  42 +-
 pkg/dubboctl/internal/kube/client.go               |  80 ++
 pkg/dubboctl/internal/kube/client_test.go          | 179 ++++-
 pkg/dubboctl/internal/kube/object.go               | 131 +++-
 pkg/dubboctl/internal/kube/object_test.go          | 139 ++++
 ...yaml => ctl_client-remove_manifest-before.yaml} |   0
 ...nifest.yaml => ctl_client-remove_manifest.yaml} |   0
 ...=> ctl_client-remove_object-delete-before.yaml} |   0
 ...e.yaml => ctl_client-remove_object-delete.yaml} |   0
 pkg/dubboctl/internal/operator/component.go        |  34 +
 pkg/dubboctl/internal/operator/operator.go         |  18 +
 .../admin_component-render_manifest.golden.yaml    | 183 ++---
 .../grafana_component-render_manifest.golden.yaml  | 242 +++---
 .../nacos_component-render_manifest.golden.yaml    | 107 +--
 ...rometheus_component-render_manifest.golden.yaml | 831 ++++++++++++---------
 ...kywalking_component-render_manifest.golden.yaml | 459 ++++++------
 .../zipkin_component-render_manifest.golden.yaml   |  64 +-
 ...zookeeper_component-render_manifest.golden.yaml | 191 ++---
 pkg/dubboctl/internal/util/filter_test.go          |  23 +
 pkg/dubboctl/internal/util/yaml.go                 |  89 +++
 pkg/dubboctl/internal/util/yaml_test.go            | 197 +++++
 pkg/logger/log.go                                  |  21 +-
 pkg/logger/log_wrapper.go                          | 109 +++
 53 files changed, 2935 insertions(+), 1271 deletions(-)
 create mode 100644 deploy/charts/dubbo-admin/README.md
 create mode 100644 deploy/charts/dubbo-admin/templates/configmap.yaml
 delete mode 100644 deploy/charts/dubbo-admin/templates/secret.yaml
 create mode 100644 deploy/charts/nacos/README.md
 copy deploy/charts/{dubbo-admin => nacos}/templates/NOTES.txt (100%)
 copy .asf.yaml => deploy/charts/nacos/templates/extra-list.yaml (87%)
 copy pkg/dubboctl/cmd/testdata/{customization/user.yaml => diff/profileA.yaml} 
(93%)
 copy pkg/dubboctl/cmd/testdata/{customization/user.yaml => diff/profileB.yaml} 
(90%)
 create mode 100644 pkg/dubboctl/internal/cmd/manifest_diff.go
 rename pkg/dubboctl/internal/cmd/{manifest.go => manifest_generate.go} (99%)
 copy pkg/dubboctl/internal/cmd/{install.go => manifest_install.go} (99%)
 rename pkg/dubboctl/internal/cmd/{install.go => manifest_uninstall.go} (68%)
 copy pkg/dubboctl/internal/kube/testdata/input/{ctl_client-apply_manifest.yaml 
=> ctl_client-remove_manifest-before.yaml} (100%)
 copy pkg/dubboctl/internal/kube/testdata/input/{ctl_client-apply_manifest.yaml 
=> ctl_client-remove_manifest.yaml} (100%)
 copy 
pkg/dubboctl/internal/kube/testdata/input/{ctl_client-apply_object-create.yaml 
=> ctl_client-remove_object-delete-before.yaml} (100%)
 copy 
pkg/dubboctl/internal/kube/testdata/input/{ctl_client-apply_object-create.yaml 
=> ctl_client-remove_object-delete.yaml} (100%)
 create mode 100644 pkg/dubboctl/internal/util/yaml_test.go
 create mode 100644 pkg/logger/log_wrapper.go

Reply via email to