Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 user should be able to set the pagenation pagination limit from master_config table. (User should set CDROUTER_PAGINATION_LIMIT from MASTER_CONFIG table ).

user has to run this query to update. 

INSERT INTO master_config (CONFIG_NAME, CONFIG_VALUE) VALUES ('CDROUTER_PAGINATION_LIMIT', '10');


2.  Setting CD Routers URL

    • If there are multiple CDRouters CDRouter in a single setup, the user has the option to provide details for each CDRouter by specifying their respective URLs and specific names. This allows users to include information about different CDRouters CDRouter present in the same setup.

...

2.  User should click on 'Add configuration' shown on the top right corner of the System Configuration page and add the Configuration name and configuration value accordingly and click on save changes button.


user should set the urls URL's for different CDRouters CDRouter available in MASTER_CONFIG table. If more than one CDRouters are CDRouter available also user has to set the urls URL's according in the master_config table under CDROUTERS CDRouter column. the values entered by the user should be in JSON format only as shown in the figure.

Example : (CDROUTERS master config value:
[{"name":"CDRouter1","url":"http://123.456.789.012"},{"name":"CDRouter2","url":"http://987.654.321.012"}] )

INSERT INTO master_config (CONFIG_NAME, CONFIG_VALUE)
VALUES ('CDROUTERS', '[{"name":"CDRouter1","url":"http://123.456.789.012"},{"name":"CDRouter2","url":"http://987.654.321.012"}]');



1.3 Setting CDRouter base UrlURL:

    • User should provide CDRouter base url beacuse URL because it's responsible for orchestrating CDRouter test executions.

...

               user can add CDRouter service base url URL also by following above steps but changing the configuration name and configuration value accordingly.
               

...

user should set the base CD router url URL in master-config table under CDROUTER_SERVICE_BASE_URL column.
Example: http://localhost:8080/api/cdrouter/service

INSERT INTO master_config (CONFIG_NAME, CONFIG_VALUE)
VALUES ('CDROUTER_SERVICE_BASE_URL', 'http://localhost:8080/api/cdrouter/service');

Note: user should add their base CDRouter service url URL when they setup the CDRouter service 

...

1. Navigate to the automatics url  and URL  and select 'System Configuration' under the settings drop down as shown in the below image.

...

  1.  Navigate to the Automatics url URL and select 'Job Settings' under the settings drop down as shown in the below image.

...

    2. User should add CDRouter base url  under URL  under Device Name and add 'CDROUTER' as Image Name prefix. Select the device type in Select Category and click on save button.
        it's a mandatory step that user should follow.

...

This micro service needs JAVA 11 or 17 to run. User should use Java 11 or 17 to make this micro service up. please refer setup page for steps to install Java 1117.

2. Automatics base url
         In CDrouter CDRouter service user should navigate to application.properties and update automatics.url with proper automatics base url and save the changes.

...

  • In the pop-up user should add 'cdrouterinstance' under Name category and base url URL of cdrouter CDRouter that the device is connected to, under value category. and click on add button as well as update button at the bottom.

...