Project

Profile

Help

Issue #3891

Updated by ragbalak over 5 years ago

The pulp-ci which installs pulp in a remote environment fails to install when docker is installed in the environment. 

 *This was tested with pulp 2.17* 

 h2. # Steps to reproduce 

 * Install docker in a f27 VM 
 <pre> 
  dnf `dnf install docker -y 
 </pre> -y` 

 * Run the pulp-ci that installs pulp in the remote  
 <pre> ```bash 
 ansible-playbook ci/ansible/pulp_server.yaml --inventory root@hostname, -e pulp_build=nightly -e pulp_version="'2.17'" -e rhn_password=***** -e rhn_pool=**** -e rhn_username=**** 
 </pre> ``` 

 * During installation, installation the install OS tree task failed thereby there by terminating the ci installer 

 *Root Root Cause :* : 
 Docker installs a dependency: subscription-manager-rhsm-certificates-1.21.x which obsoletes python-rhsm-certificates that were installed by the OS tree install task and this causes a dependency problem for os tree installation. the task to fail. 

 The whole stack trace is attached with this issue. 

Back