In this chapter, we will quickly create a set of Dubbo-go Server and Client applications using the application template and deploy them in an Istio cluster; observe, debug, and verify service discovery and successful calls.
The generated project includes several directories:
api: stores interface files: proto files and generated pb.go files
build: stores build-related files
chart: stores chart repository for release and base environment chart repository: nacos, mesh (in development)
cmd: program entry point
conf: framework configuration
pkg/service: RPC service implementation
Makefile:
Compile the interface
Developers need to modify the proto file, in this task, we can use the default interface directly.
Pull dependencies
Write business logic
Modify pkg/service/service.go implementation function, return version “v1.0.0” in the string.
Modify the configuration as follows to use xds protocol as the registry
conf/dubbogo.yaml
Thus, the application development is complete.
Specify the image to be built:
Modify the Makefile as follows to specify the image address and version to be built.
Specify the name for installation via helm.
Specify the application and image to be deployed:
Modify chart/app/Chart.yaml as follows to specify the current application name as dubbo-go-server
, during deployment a service named dubbo-go-server will be created, associating all versions of the current application.
Modify chart/app/values.yaml as follows to specify the image to be deployed and the current application version dubbogoAppVersion as v1.
The deployed image must match the built image above. The current application version is used for mesh traffic rule control.
Thus, the build and release parameters are ready for building and deploying.
Build and Push the Image
$ make build
(Local is amd64 machine)
or
$ make buildx-publish
(Local is arm64 machine, relies on docker buildx command)
Deploy the Dubbo-go Application to the Cluster
The deployment via helm was successful.
Check the deployed deployment with version v1.
Check the deployed service.
Use kubectl port-forward to forward Dubbo-go application to local
Use grpc_cli to debug applications inside the cluster, refer to the task Debugging Dubbo-go Application using grpc_cli
Use grpc_cli to initiate a call and test the interface
Thus, we have successfully developed an application and deployed it in the Istio cluster.
Modify the configuration file to use xds protocol as the registry, loading client service named GreeterClientImpl.
conf/dubbogo.yaml
Thus, the application development is complete.
Specify the image to be built:
Modify the Makefile as follows to specify the image address and version to be built.
Specify the name for installation via helm.
Specify the application and image to be deployed:
Modify chart/app/Chart.yaml as follows to specify the current application name as dubbo-go-client
, during deployment a service named dubbo-go-client will be created, associating all versions of the current application. For an application that is only a client, a service can be omitted, it can be modified by developers in the template; we will create it by default in this tutorial.
Modify chart/app/values.yaml as follows to specify the image to be deployed and the current application version dubbogoAppVersion as v1.
The deployed image must match the built image above. The current application version is used for mesh traffic rule control.
Thus, the build and release parameters are ready for building and deploying.
Build and Push the Image
$ make build
(Local is amd64 machine)
or
$ make buildx-publish
(Local is arm64 machine, relies on docker buildx command)
Deploy the Dubbo-go Client Application to the Cluster
It can be seen that the deployment via helm was successful, and both Client and Server applications now exist in the cluster.
Check the deployed client and server deployments.
Check client call logs
Verify the call was successful.
The application templates provided by dubbogo-cli conveniently support developers in image building, pushing, and deployment.
In the Istio environment, server applications register their service information on Istio, while clients listen to xds resources, querying the Istio debug port for interface-level service discovery. Developers do not need to worry about concepts like service names, hostnames, and cluster names; they only need to import interfaces and initiate calls.