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 f683700 Merge pull request #24 from sjmshsh/master
add 97b1444 fix docs, fix license, fix lint, fix test
add 29aa5e9 install
add 84e0d6e fix lint
add 34e4af1 fix lint
add b966cad fix fmt.Fprintf lint
add bc1d942 fix
add 8fea961 add .gofmt
add 55083b4 fix fmt
add 8f3770e fix
new c1d061f Merge pull request #25, enhance install
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/dubboctl/cmd/build.go | 14 ++-
app/dubboctl/cmd/create.go | 2 +-
app/dubboctl/cmd/dashboard_all_cmds.go | 45 ++++---
app/dubboctl/cmd/deploy.go | 125 +++++++++++++++++++-
app/dubboctl/cmd/manifest_generate.go | 11 +-
app/dubboctl/cmd/manifest_install.go | 3 +-
app/dubboctl/cmd/manifest_uninstall.go | 3 +-
app/dubboctl/cmd/prompt/prompt.go | 4 +-
app/dubboctl/cmd/repository_test.go | 122 -------------------
app/dubboctl/cmd/root.go | 2 +-
app/dubboctl/internal/builders/pack/build.go | 6 -
app/dubboctl/internal/builders/pack/build_test.go | 2 +-
app/dubboctl/internal/docker/pusher_test.go | 129 ---------------------
app/dubboctl/internal/dubbo/client.go | 36 +++---
app/dubboctl/internal/dubbo/deploy.tpl | 24 +++-
app/dubboctl/internal/dubbo/deployer.go | 9 ++
app/dubboctl/internal/dubbo/dubbo.go | 38 +++---
app/dubboctl/internal/kube/client.go | 55 ++++++++-
app/dubboctl/internal/kube/client_test.go | 13 +--
app/dubboctl/internal/kube/common.go | 2 +-
.../internal/{operator => kube}/component.go | 2 +-
.../internal/{operator => kube}/component_test.go | 6 +-
.../internal/{operator => kube}/operator.go | 10 +-
.../admin_component-render_manifest.golden.yaml | 0
.../nacos_component-render_manifest.golden.yaml | 0
...rometheus_component-render_manifest.golden.yaml | 1 +
...kywalking_component-render_manifest.golden.yaml | 0
.../zipkin_component-render_manifest.golden.yaml | 0
...zookeeper_component-render_manifest.golden.yaml | 0
docs/cmd/dubboctl/deploy.md | 43 +++++++
docs/cmd/dubboctl/quick_start.md | 13 ++-
docs/cmd/dubboctl/reference/dubboctl_create.md | 23 +++-
generate/templates/main.go | 2 +-
go.sum | 8 ++
pkg/core/model/model.go | 4 +-
35 files changed, 383 insertions(+), 374 deletions(-)
rename app/dubboctl/internal/{operator => kube}/component.go (99%)
rename app/dubboctl/internal/{operator => kube}/component_test.go (98%)
rename app/dubboctl/internal/{operator => kube}/operator.go (96%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/admin_component-render_manifest.golden.yaml (100%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/nacos_component-render_manifest.golden.yaml (100%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/prometheus_component-render_manifest.golden.yaml (99%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/skywalking_component-render_manifest.golden.yaml (100%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/zipkin_component-render_manifest.golden.yaml (100%)
rename app/dubboctl/internal/{operator =>
kube}/testdata/want/zookeeper_component-render_manifest.golden.yaml (100%)
create mode 100644 docs/cmd/dubboctl/deploy.md