Skip to main content
Git Interface

Radware Bot Manager

Learn how to use the Radware Bot Manager module.

Deploy

Submit a support request by clicking the Support link in the left sidebar to have the Radware Bot Manager module deployed.

Manage

Manage the Radware Bot Manager module through the Radware Bot Manager dashboard.

note

Submit a support request by clicking the Support link in the left sidebar if you need help managing this module.

Delete

Follow the steps below to delete the Radware Bot Manager module from your environment:

  1. Go to the Git config of the environment you want to delete the Radware Bot Manager module from.

  2. In the top of the page, copy the URL next to Clone with HTTPS.

  3. Open a terminal and change the current working directory to the location where you want the cloned environment repository.

  4. Clone the environment repository to your local computer. Type git clone followed by the copied URL and then press Enter:

    git clone <copied_url>
  5. In the root directory of the environment repository, delete the Radware Bot Manager module directory (typically named radwarebotmanager).

    note

    Skip this step to disable the module instead of deleting it.

  6. In the environment's section.config.json file, delete the module object from the proxychain array, which will look like the following:

    section.config.json
    ...
    "proxychain": [
    ...
    {
    "name": "<module_directory_name>",
    "image": "<module_image>"
    },
    ...
    ],
    ...
    section.config.json
    ...
    "proxychain": [
    ...
    {
    "name": "radwarebotmanager",
    "image": "radwarebotmanager:6.0.18"
    },
    ...
    ],
    ...
  7. Stage, commit, and push the changes to the environment's remote repository:

    git add .
    git commit -m "Delete the Radware Bot Manager module"
    git push