RDK Resources
[*RDK Preferred*]
Code Management Facility
RDK Forums
[RDK Conferences]
RDK Support
Archives
Papers & Presentations Archive
Please setup Automatics system if not already done following Automatics Tool Setup
Follow below steps to deploy CDRouter service in Automatics System.
User can deploy CDRouter service in automated approach or manually. Recommended approach is the automated way of deployment.
User has to run first run Automatics_Build_job to build the docker image of CDRouter Service and then Automatics_Deployment_job to bring up cdrouter docker service.
In Automatics_Build_job, please check the option BUILD_CDROUTER_SERVICE and run the job. This will create CDRouter Service Docker File upon success.
In Automatics_Deployment_job, please check the option DEPLOY_CDROUTER_SERVICE. Select options as given in below screenshots and Build the job. This will deploy CDRouter Service Docker on destination VM.
JDK 17
Maven 3
JDK 17 Setup Details
Follow Steps below to install Java 17 on CentOS/linux.
Update before installing any new program
yum -y update |
---|
Install Java 17
yum install java-17-openjdk |
---|
Verify Java is Installed
java –version |
---|
In application.properties file of CDRouter Service, we can configure certain values for cdrouter test execution.
Property Name | Description |
---|---|
automatics.url | Base url of orchestration |
devicemanager.url | Base url of device manager service |
"mvn clean install"
Run the below command from cdrouter-service directory to bring the CDRouter Service up in the VM.
nohup java -XX:+UseSerialGC -Dlog4j2.formatMsgNoLookups=true -jar cdrouterservice-0.0.1-SNAPSHOT.jar > logfile.log 2>&1 & |
---|