How to download the individual SV docker images
search cancel

How to download the individual SV docker images

book

Article ID: 266864

calendar_today

Updated On:

Products

Service Virtualization

Issue/Introduction

I am following the document to use DevTest with docker. The issue is we require the individual component images like registry, portal etc. However, our virtual machine cannot download the software because it doesn't have access to the Internet.  Can you provide us the individual files?

 

Environment

Release : 10.7.2

Resolution

The steps to download the individual Docker images are as follows:
Note: this requires that you have a Linux system, with Docker installed, and Internet access.

  1. Open a browser and go to https://support.broadcom.com.

  2. Select "My Downloads" and search for Service Virtualization.

  3. Select the "Service Virtualization" link.


  4. The list of SKUs that you see for Service Virtualization will depend on your entitlements. Select the link for Service Virtualization that you are entitled to. In this example, I am selecting the SV: LISA Service Virtualization MULTI-PLATFORM SKU.


  5. Click on the green shield icon next to the 10.7.2 release.

    This will generate a token that can be used to download the docker packages. It also opens the "Download Instructions" dialog window. Scroll to the bottom of the page, and follow the instructions to "pull docker images".

  6. Copy and save the generated token, The token is valid for 1 year.

  7. In a command prompt on the Linux system, set the token as a local variable by running the following command:
    export token=<'your generated token value'>
    For example: export
    token='eyJ2ZXabc63s'

  8. To verify the local variable, run: echo $token
    You should see your token value returned.

  9. Run the command:
    sudo docker login sv-docker.packages.broadcom.com -u <'your_email_address>' -p $token

  10. If the login is successful, continue to pull the docker images using the commands below:
    • sudo docker pull sv-docker.packages.broadcom.com/sv/lisa:10.7.2.376
    • sudo docker pull sv-docker.packages.broadcom.com/sv/portal:10.7.2.308
    • sudo docker pull sv-docker.packages.broadcom.com/sv/config-server:0.0.7.26
    • sudo docker pull sv-docker.packages.broadcom.com/sv/iaam:1.4.5.671
    • sudo docker pull sv-docker.packages.broadcom.com/sv/virtual-service-catalog:1.7.8.57

  11. Save the images using the following commands:
    • sudo docker save sv-docker.packages.broadcom.com/sv/lisa:10.7.2.376 -o lisa.tar
    • sudo docker save sv-docker.packages.broadcom.com/sv/portal:10.7.2.308 -o portal.tar
    • sudo docker save sv-docker.packages.broadcom.com/sv/config-server:0.0.7.26 -o config-server.tar
    • sudo docker save sv-docker.packages.broadcom.com/sv/iaam:1.4.5.671 -o iam.tar
    • sudo docker save sv-docker.packages.broadcom.com/sv/virtual-service-catalog:1.7.8.57 -o virtual-service-catalog.tar

  12. Move the tar files over to your Linux machines that do not have Internet access and install the images.