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 dfa8048d Merge pull request #299 from cirth9/master
add 77d2d152 add configurator search operator
add 31857615 rebuild .pb.go file
add 79081f75 done `/configurator/{ruleName}`
add b6488139 done configurator with out POST/PUT
add 9ed652e0 merge upstream
add 9850bfe5 Preliminary completion of Configurators
add 81fbc6b8 Preliminary completion of Tag-Route Condition-Route
add e52c6f9b fix golangci-lint in ./pkg/admin
add 5244c88d traditional env test&fix done
add df137e61 Change parameter transfer form
add b903f26e fix bug in k8s env
add 86d67b2f rerun gen proto
add ad821885 rewrite k8s Update store logic
add 67a9cbd1 merge upstream
add 35d61df5 rewrite KubernetesStore.Update
add 28b188ed fix KubernetesStore.Update misspell
add 89a74765 run 「make dubbogofmt」
add e2ed1bd4 fix k8s.source.matedata.name invalid
add baca9d7b fix regexp misCompile
add 22fc67ba add comment
add fd632fff Merge upstream
new 42086f8f Merge pull request #294 from YarBor/Rule
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:
api/mesh/v1alpha1/dynamic_config.pb.go | 95 +++++----
api/mesh/v1alpha1/dynamic_config.proto | 3 +-
conf/dubbo-cp.yaml | 2 +-
pkg/admin/handler/traffic_condition_rule.go | 166 ++++++++++++++++
pkg/admin/handler/traffic_configurator.go | 166 ++++++++++++++++
pkg/admin/handler/traffic_tag_rule.go | 167 ++++++++++++++++
pkg/admin/model/traffic_condition_rule.go | 75 +++++++
pkg/admin/model/traffic_configurator.go | 216 +++++++++++++++++++++
pkg/admin/model/traffic_tag_rule.go | 92 +++++++++
pkg/admin/server/router.go | 27 +++
pkg/admin/server/server.go | 3 +-
pkg/core/governance/governance_config.go | 21 ++
pkg/core/governance/governance_config_mock.go | 8 +
pkg/plugins/resources/k8s/store.go | 137 ++++++++++++-
pkg/plugins/resources/k8s/store_test.go | 64 ++++++
pkg/plugins/resources/k8s/util/bitset.go | 71 +++++++
.../resources/k8s/util/bitset_test.go} | 55 ++++--
pkg/plugins/resources/traditional/store.go | 203 ++++++++++++-------
pkg/plugins/resources/traditional/utils.go | 38 ++++
19 files changed, 1472 insertions(+), 137 deletions(-)
create mode 100644 pkg/admin/handler/traffic_condition_rule.go
create mode 100644 pkg/admin/handler/traffic_configurator.go
create mode 100644 pkg/admin/handler/traffic_tag_rule.go
create mode 100644 pkg/admin/model/traffic_condition_rule.go
create mode 100644 pkg/admin/model/traffic_configurator.go
create mode 100644 pkg/admin/model/traffic_tag_rule.go
create mode 100644 pkg/plugins/resources/k8s/store_test.go
create mode 100644 pkg/plugins/resources/k8s/util/bitset.go
copy pkg/{util/os/fs.go => plugins/resources/k8s/util/bitset_test.go} (54%)