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 2853ed1 Merge pull request #54 from sjmshsh/master
new a37c6ab script, front, admin
new 67fb356 .run
new 16e3a90 .run
new 4b55900 Dockerfile
new a6f8141 fix Dokcerfile
new 8b85a76 refactor webhook component
new de28a99 add javaInjection
new 234f274 delete dubbboctl deploy registry inject
new 8fb60a1 add kubeclient
new e7001b3 fix ci
new e676173 fix append
new 664c99f Merge pull request #57 from sjmshsh/master
The 880 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:
.gitignore | 9 +-
.licenserc.yaml | 6 +-
Dockerfile | 17 +-
Makefile | 155 +-
app/dubbo-cp/cmd/root.go | 2 +-
app/dubbo-cp/cmd/run.go | 10 +-
app/dubbo-ui/dist/index.html | 3 +-
app/dubbo-ui/dist/static/css/app.4791f1de.css | 17 -
app/dubbo-ui/dist/static/css/app.4ab00ae8.css | 1 +
...ors.52f99f04.css => chunk-vendors.90cf4675.css} | 32 +-
....2b9b4872.svg => jsoneditor-icons.94cc3007.svg} | 0
app/dubbo-ui/dist/static/img/logo.5ba69830.png | Bin 5564 -> 0 bytes
.../{max_btn.bdc6b5b1.svg => max_btn.546521f3.svg} | 0
app/dubbo-ui/dist/static/js/app.13889972.js | 2 +
app/dubbo-ui/dist/static/js/app.13889972.js.map | 1 +
app/dubbo-ui/dist/static/js/app.74d999b7.js | 18 -
app/dubbo-ui/dist/static/js/app.74d999b7.js.map | 17 -
app/dubbo-ui/dist/static/js/braceBase.26ea46f8.js | 2 +
...e.39ce0e20.js.map => braceBase.26ea46f8.js.map} | 18 +-
app/dubbo-ui/dist/static/js/braceBase.39ce0e20.js | 18 -
.../dist/static/js/chunk-vendors.604d7b41.js | 1477 --------------------
.../dist/static/js/chunk-vendors.604d7b41.js.map | 17 -
.../dist/static/js/chunk-vendors.6ea1db8a.js | 1456 +++++++++++++++++++
.../dist/static/js/chunk-vendors.6ea1db8a.js.map | 1 +
app/dubboctl/internal/dubbo/deploy.tpl | 4 +-
app/dubboctl/internal/dubbo/deployer.go | 2 -
app/dubboctl/internal/dubbo/dubbo.go | 41 -
conf/admin.yml | 6 +-
deploy/deployment.yml | 67 -
deploy/docker/authority/Dockerfile | 44 -
deploy/permission.yml | 97 --
pkg/admin/bootstrap.go | 13 +-
pkg/authority/server/authority.go | 35 +-
pkg/authority/server/authority_test.go | 10 +-
pkg/authority/setup.go | 11 -
pkg/core/bootstrap/bootstrap.go | 17 +-
pkg/core/cert/provider/storage.go | 12 +-
pkg/core/cert/provider/storage_test.go | 4 +-
pkg/core/{cert/provider => client/cert}/client.go | 103 +-
pkg/core/client/webhook/client.go | 136 ++
pkg/core/runtime/builder.go | 23 +-
pkg/core/runtime/runtime.go | 23 +-
pkg/core/tools/endpoint/endpoint.go | 6 +-
pkg/core/tools/endpoint/endpoint_test.go | 10 +-
pkg/dds/server/server.go | 4 +-
pkg/snp/server/servicemapping.go | 4 +-
pkg/{authority => webhook}/patch/javasdk.go | 23 +-
pkg/{authority => webhook}/patch/javasdk_test.go | 66 +-
pkg/webhook/server/server.go | 75 +
pkg/{authority => webhook}/setup.go | 37 +-
pkg/{authority => webhook}/webhook/server.go | 0
pkg/{authority => webhook}/webhook/server_test.go | 2 +-
release/downloadDubboCtl.sh | 110 ++
53 files changed, 2030 insertions(+), 2234 deletions(-)
delete mode 100644 app/dubbo-ui/dist/static/css/app.4791f1de.css
create mode 100644 app/dubbo-ui/dist/static/css/app.4ab00ae8.css
rename app/dubbo-ui/dist/static/css/{chunk-vendors.52f99f04.css =>
chunk-vendors.90cf4675.css} (87%)
rename app/dubbo-ui/dist/static/img/{jsoneditor-icons.2b9b4872.svg =>
jsoneditor-icons.94cc3007.svg} (100%)
delete mode 100644 app/dubbo-ui/dist/static/img/logo.5ba69830.png
rename app/dubbo-ui/dist/static/img/{max_btn.bdc6b5b1.svg =>
max_btn.546521f3.svg} (100%)
create mode 100644 app/dubbo-ui/dist/static/js/app.13889972.js
create mode 100644 app/dubbo-ui/dist/static/js/app.13889972.js.map
delete mode 100644 app/dubbo-ui/dist/static/js/app.74d999b7.js
delete mode 100644 app/dubbo-ui/dist/static/js/app.74d999b7.js.map
create mode 100644 app/dubbo-ui/dist/static/js/braceBase.26ea46f8.js
rename app/dubbo-ui/dist/static/js/{braceBase.39ce0e20.js.map =>
braceBase.26ea46f8.js.map} (56%)
delete mode 100644 app/dubbo-ui/dist/static/js/braceBase.39ce0e20.js
delete mode 100644 app/dubbo-ui/dist/static/js/chunk-vendors.604d7b41.js
delete mode 100644 app/dubbo-ui/dist/static/js/chunk-vendors.604d7b41.js.map
create mode 100644 app/dubbo-ui/dist/static/js/chunk-vendors.6ea1db8a.js
create mode 100644 app/dubbo-ui/dist/static/js/chunk-vendors.6ea1db8a.js.map
delete mode 100644 deploy/deployment.yml
delete mode 100644 deploy/docker/authority/Dockerfile
delete mode 100644 deploy/permission.yml
rename pkg/core/{cert/provider => client/cert}/client.go (68%)
create mode 100644 pkg/core/client/webhook/client.go
rename pkg/{authority => webhook}/patch/javasdk.go (87%)
rename pkg/{authority => webhook}/patch/javasdk_test.go (92%)
create mode 100644 pkg/webhook/server/server.go
copy pkg/{authority => webhook}/setup.go (52%)
rename pkg/{authority => webhook}/webhook/server.go (100%)
rename pkg/{authority => webhook}/webhook/server_test.go (99%)
create mode 100644 release/downloadDubboCtl.sh