Skip to content

Commit 453d873

Browse files
authored
feat: Update proxyless grpc architecture (#894)
1 parent b1ce13a commit 453d873

15 files changed

Lines changed: 1491 additions & 133 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@ jobs:
6060
tag_name: ${{ github.ref_name }}
6161
release_name: "${{ github.ref_name }}"
6262
body: |
63-
Remove envoy go-control-plane replace it with xds api.
64-
Add xds metrics.
65-
Remove dubboctl seek subcommand.
66-
Update description and content.
63+
Refactor the intrusive application design to a non-intrusive process design.
64+
Modify relevant architectural code logic.
65+
Update relevant core content.
6766
draft: false
6867
prerelease: false
6968

dubbod/agency/options/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var (
5959
"Path where gRPC expects to read a bootstrap file. Agent will generate one if set.").Get()
6060

6161
caProviderEnv = env.Register("CA_PROVIDER", "Aegis", "name of authentication provider").Get()
62-
caEndpointEnv = env.Register("CA_ADDR", "", "Address of the spiffe certificate provider. Defaults to discoveryAddress").Get()
62+
caEndpointEnv = env.Register("CA_ADDRESS", "", "Address of the spiffe certificate provider. Defaults to discoveryAddress").Get()
6363

6464
clusterIDVar = env.Register("DUBBO_META_CLUSTER_ID", "", "")
6565
fileMountedCertsEnv = env.Register("FILE_MOUNTED_CERTS", false, "").Get()

dubbod/discovery/cmd/app/cmd.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ func NewRootCommand() *cobra.Command {
5353

5454
cmd.AddFlags(rootCmd)
5555
rootCmd.AddCommand(waitCmd)
56+
rootCmd.AddCommand(newXDSClientCommand())
5657

5758
return rootCmd
5859
}

0 commit comments

Comments
 (0)