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 7966f027 Merge pull request #230 from sjmshsh/master
add 322eb963 fix universal bug
add 32aed7de fix universal bug
add c000318b fix universal bug
add 4f0d98f2 fix resource bug
add d0df64cd fix resource bug
add f63752c0 fix k8s mode
new 69233c46 Merge pull request #231 from sjmshsh/master
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/dataplane.pb.go | 15 +-
api/mesh/v1alpha1/dataplane.proto | 1 +
api/mesh/v1alpha1/zone_ingress.pb.go | 27 +-
api/mesh/v1alpha1/zone_ingress.proto | 1 +
api/mesh/v1alpha1/zoneegress.pb.go | 15 +-
api/mesh/v1alpha1/zoneegress.proto | 1 +
api/mesh/v1alpha1/zoneegressinsight.pb.go | 2 +-
conf/dubbo-cp.yaml | 2 +-
deploy/charts/admin/crds/dubbo.io_dataplanes.yaml | 2 +-
.../charts/admin/crds/dubbo.io_zoneegresses.yaml | 2 +-
...ights.yaml => dubbo.io_zoneegressinsights.yaml} | 12 +-
.../charts/admin/crds/dubbo.io_zoneingresses.yaml | 2 +-
pkg/admin/server/server.go | 12 +-
pkg/bufman/pkg/dag/dag.go | 17 -
pkg/config/plugins/runtime/k8s/config.go | 2 +-
pkg/core/bootstrap/bootstrap.go | 9 +-
pkg/core/governance/governance_config.go | 16 +-
.../condition_route/condition_route_manager.go | 5 +-
.../managers/apis/dataplane/dataplane_manager.go | 5 +-
.../managers/apis/dynamic_config/dynamic_config.go | 5 +-
pkg/core/managers/apis/mapping/mapping_manager.go | 5 +-
pkg/core/managers/apis/mesh/mesh_manager.go | 5 +-
.../managers/apis/metadata/metadata_manager.go | 5 +-
pkg/core/managers/apis/tag_route/tag_route.go | 5 +-
pkg/core/managers/apis/zone/zone_manager.go | 3 +
.../managers/apis/zone/zone_manager_suite_test.go | 9 +-
pkg/core/managers/apis/zone/zone_manager_test.go | 5 +-
pkg/core/managers/apis/zone/zone_validator.go | 8 +-
pkg/core/reg_client/zookeeper/zookeeper.go | 14 +-
.../resources/apis/mesh/zz_generated.resources.go | 348 +++++++++++++++++++++
.../native/api/v1alpha1/zz_generated.deepcopy.go | 62 ++++
.../k8s/native/api/v1alpha1/zz_generated.mesh.go | 115 ++++++-
pkg/plugins/resources/traditional/store.go | 48 +--
pkg/plugins/runtime/k8s/plugin.go | 19 +-
.../k8s/webhooks/containerpatch_validator.go | 8 +-
.../k8s/webhooks/policy_namespace_validator.go | 8 +-
.../runtime/k8s/webhooks/service_validator.go | 15 +-
pkg/plugins/runtime/k8s/webhooks/zone_validator.go | 13 +-
test/cert/tls.crt | 36 ++-
test/cert/tls.key | 50 +--
test/control-plane/cp.yaml | 33 +-
.../{ => crds}/dubbo.io_conditionroutes.yaml | 0
.../{ => crds}/dubbo.io_dataplaneinsights.yaml | 0
.../{ => crds}/dubbo.io_dataplanes.yaml | 2 +-
.../{ => crds}/dubbo.io_datasources.yaml | 0
.../{ => crds}/dubbo.io_dynamicconfigs.yaml | 0
.../{ => crds}/dubbo.io_mappings.yaml | 0
test/control-plane/{ => crds}/dubbo.io_meshes.yaml | 0
.../{ => crds}/dubbo.io_meshinsights.yaml | 0
.../{ => crds}/dubbo.io_metadata.yaml | 0
.../control-plane/{ => crds}/dubbo.io_secrets.yaml | 0
.../{ => crds}/dubbo.io_servicenamemappings.yaml | 0
.../{ => crds}/dubbo.io_tagroutes.yaml | 0
.../{ => crds}/dubbo.io_zoneegresses.yaml | 2 +-
.../crds/dubbo.io_zoneegressinsights.yaml | 12 +-
.../{ => crds}/dubbo.io_zoneingresses.yaml | 2 +-
.../{ => crds}/dubbo.io_zoneingressinsights.yaml | 0
.../{ => crds}/dubbo.io_zoneinsights.yaml | 0
test/control-plane/{ => crds}/dubbo.io_zones.yaml | 0
59 files changed, 756 insertions(+), 229 deletions(-)
copy deploy/charts/admin/crds/{dubbo.io_zoneingressinsights.yaml =>
dubbo.io_zoneegressinsights.yaml} (89%)
rename test/control-plane/{ => crds}/dubbo.io_conditionroutes.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_dataplaneinsights.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_dataplanes.yaml (98%)
rename test/control-plane/{ => crds}/dubbo.io_datasources.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_dynamicconfigs.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_mappings.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_meshes.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_meshinsights.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_metadata.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_secrets.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_servicenamemappings.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_tagroutes.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_zoneegresses.yaml (98%)
copy deploy/charts/admin/crds/dubbo.io_zoneingressinsights.yaml =>
test/control-plane/crds/dubbo.io_zoneegressinsights.yaml (89%)
rename test/control-plane/{ => crds}/dubbo.io_zoneingresses.yaml (98%)
rename test/control-plane/{ => crds}/dubbo.io_zoneingressinsights.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_zoneinsights.yaml (100%)
rename test/control-plane/{ => crds}/dubbo.io_zones.yaml (100%)