You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2021/06/04 08:41:15 UTC

[dubbo] branch 3.0 updated (d75d3a0 -> f53d8a5)

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

liujun pushed a change to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git.


    from d75d3a0  Fix get wrong path for ServiceAddressURL (#7980)
     add f53d8a5  Introduce cert signer for xDS, opt xDS Impl (#7934)

No new revisions were added by this update.

Summary of changes:
 dubbo-dependencies-bom/pom.xml                     |  17 ++
 dubbo-registry/dubbo-registry-xds/pom.xml          |  46 ++++
 .../dubbo/registry/xds/XdsCertificateSigner.java   |  91 ++++----
 .../java/org/apache/dubbo/registry/xds/XdsEnv.java |   8 +-
 .../dubbo/registry/xds/XdsServiceDiscovery.java    |  22 +-
 .../registry/xds/XdsServiceDiscoveryFactory.java   |  12 +-
 .../xds/istio/IstioCitadelCertificateSigner.java   | 249 +++++++++++++++++++++
 .../dubbo/registry/xds/istio/IstioConstant.java    |  53 +++++
 .../apache/dubbo/registry/xds/istio/IstioEnv.java  | 121 ++++++++++
 .../dubbo/registry/xds/util/PilotExchanger.java    |  43 ++--
 .../apache/dubbo/registry/xds/util/XdsChannel.java |  32 ++-
 .../xds/util/protocol/AbstractProtocol.java        | 156 ++++++-------
 .../xds/util/protocol/impl/EdsProtocol.java        |  25 +--
 .../xds/util/protocol/impl/LdsProtocol.java        |  31 +--
 .../xds/util/protocol/impl/RdsProtocol.java        |  25 +--
 .../dubbo-registry-xds/src/main/proto/ca.proto     |  57 +++++
 ....apache.dubbo.registry.xds.XdsCertificateSigner |   1 +
 pom.xml                                            |   2 +
 18 files changed, 765 insertions(+), 226 deletions(-)
 copy dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/ConfiguratorFactory.java => dubbo-registry/dubbo-registry-xds/src/main/java/org/apache/dubbo/registry/xds/XdsCertificateSigner.java (55%)
 copy dubbo-config/dubbo-config-api/src/test/java/org/apache/dubbo/config/utils/service/XxxService.java => dubbo-registry/dubbo-registry-xds/src/main/java/org/apache/dubbo/registry/xds/XdsEnv.java (89%)
 create mode 100644 dubbo-registry/dubbo-registry-xds/src/main/java/org/apache/dubbo/registry/xds/istio/IstioCitadelCertificateSigner.java
 create mode 100644 dubbo-registry/dubbo-registry-xds/src/main/java/org/apache/dubbo/registry/xds/istio/IstioConstant.java
 create mode 100644 dubbo-registry/dubbo-registry-xds/src/main/java/org/apache/dubbo/registry/xds/istio/IstioEnv.java
 create mode 100644 dubbo-registry/dubbo-registry-xds/src/main/proto/ca.proto
 create mode 100644 dubbo-registry/dubbo-registry-xds/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.xds.XdsCertificateSigner