IBM / cloud-pak-deployer

Configuration-based installation of OpenShift and Cloud Pak for Data/Integration/Watson AIOps on various private and public cloud infrastructure providers. Deployment attempts to achieve the end-state defined in the configuration. If something fails along the way, you only need to restart the process to continue the deployment.
https://ibm.github.io/cloud-pak-deployer/
Apache License 2.0
138 stars 68 forks source link

Document pull of image from quay.io #504

Closed fketelaars closed 6 months ago

fketelaars commented 1 year ago

In some situations, uses may not be able to build the deployer image on the server. Instead they could pull it from quay.io. Document the steps to pull the public image.

luigimolinaro commented 1 year ago

In my experience thereis a lot of url used form the deployer. I tried to compile "Cloud Pak Deployer" under a Proxy Enviroment and this is the list of the opened urls

Another method usefully in this scenario is build deployer in a computer allowed and copy the raw image using for example docker cp :

example

Save the Docker image as a tar file in machine 1

docker save -o app_build_001.tar artifactory.rc.com/repo/test_app_snapshots:app_build_001

Copy the tar file to machine 2

scp app_build_001.tar remote_username@172.10.10.2:/remote/directory

Import image into machine 2

docker load -i <path to image tar file>