Skip to content

Latest commit

 

History

History
79 lines (61 loc) · 2.56 KB

README.md

File metadata and controls

79 lines (61 loc) · 2.56 KB

WSO2 API Manager CLI

WSO2 API Manager CLI provides commands for migrating APIs between API manager environments.

Getting Started

  1. Clone this project and build it using the following commands:

    git clone https://github.com/imesh/wso2-apim-cli
    cd wso2-apim-cli
    go get github.com/urfave/cli
    go build .
    
  2. Set following environment variables pointing to the source API Manager:

    export SRC_WSO2_APIM_ENDPOINT=https://localhost:9443
    export SRC_WSO2_APIM_GATEWAY_ENDPOINT=https://localhost:8243
    export SRC_WSO2_APIM_USERNAME=admin
    export SRC_WSO2_APIM_PASSWORD=admin
  3. Set following environment variables pointing to the destination API Manager:

    export DST_WSO2_APIM_ENDPOINT=https://localhost:9445
    export DST_WSO2_APIM_GATEWAY_ENDPOINT=https://localhost:8245
    export DST_WSO2_APIM_USERNAME=admin
    export DST_WSO2_APIM_PASSWORD=admin
  4. Execute the following command to export APIs from the source API Manager:

    ./wso2-apim-cli export

    Find a sample output of the above command below:

    $ ./wso2-apim-cli export
    Client id and client secret obtained
    Access token generated
    API Movies-v1.0 exported successfully: ./export/Movies-v1.0.zip
    API Customer-1.0.0 exported successfully: ./export/Customer-1.0.0.zip
    API Customer-1.0.1 exported successfully: ./export/Customer-1.0.1.zip
    API Customer-1.0.2 exported successfully: ./export/Customer-1.0.2.zip
    API Tapes-v1.0 exported successfully: ./export/Tapes-v1.0.zip
  5. The exported APIs will be available in the export/ folder. Extract the API package files and update the endpoints of the APIs if required. Once the update process is done re-zip them with the same folder structure.

  6. Now, execute the following command to import APIs to the destination API Manager:

    ./wso2-apim-cli import

    Find a sample output of the above command below:

    $ ./wso2-apim-cli import
    API Customer-1.0.0.zip imported successfully
    API Customer-1.0.1.zip imported successfully
    API Customer-1.0.2.zip imported successfully
    API Movies-v1.0.zip imported successfully
    API Tapes-v1.0.zip imported successfully
    Client id and client secret obtained
    Access token generated
    API Movies-v1.0 published successfully
    API Customer-1.0.0 published successfully
    API Customer-1.0.1 published successfully
    API Customer-1.0.2 published successfully
    API Tapes-v1.0 published successfully
    
  7. Login to the destination API manager publisher UI and verify the imported APIs.