Project

Profile

Help

Story #3716

Updated by bmbouter almost 6 years ago

h3. Motivation 

 1. "Installation of Pulp":https://docs.pulpproject.org/en/3.0/nightly/installation/instructions.html#pypi-installation is complicated and could be made much easier with an Ansible installer. 

 2. Clustered based installs are also very complicated. Typically users want to install some mixture of Pulp services on different hosts. Doing this consistently is time consuming and error prone. Ansible could install in clusered environments very well. 

 h3. Usage 

 The installer will live as a collection of roles 1 role named 'pulp3' and published via the 'pulp' user on Ansible Galaxy. That will cause it to be available "here":https://galaxy.ansible.com/pulp/    Each role will install a pulp component, and using an Ansible playbook the user can select which roles will run on any given host or host group. Here are the roles we foresee: "here":https://galaxy.ansible.com/pulp/pulp3/ 

 * base - install the pulp virtualenv and any plugins 
 * webserver - depends on base. Installs the webserver of choice. Install systemd unit file for webserver. Set to autostart. 
 * resource manager - depends on base. Installs resource manager systemd unit file. Set to autostart 
 * workers - depends on base. Installs workers systemd unit files. Set to autostart 
 * Redis - hopefully an existing Role on Galaxy named in our playbooks as a dependency 
 * Postgres - hopefully an existing Role on Galaxy named in our playbooks as a dependency 

 h3. Features 

 * Generic plugin installation as specified by Ansible variables. Any plugin that only requires a pip install command and the migrations run will work 
 * Install and configure Redis on a specific host in the inventory. inventory 
 * Install and configure Postgres on a specific host in the inventory. inventory 
 * Installs the virtualenv to be used in a role. 
 * Installs systemd units for a webserver, workers, or resource manager on one or more host in the inventory 
 * Allows a choice of Nginx or Apache (defaults to nginx) 
 * Allows for custom settings.py file provided by the user 
 * Provides sparse settings.py by default 
 * Idempotent 

 h3. Assumptions 

 h5. Dependency 

 This assumes that the installing the plugin will bring all of it's necessary dependencies including pulpcore.plugin and pulpcore itself. Specifically plugins are recommended to depend on pulpcore.plugin. That would bring in dependencies as follows: 

 Using Ansible variables, the Ansible installer will pip install <code>pulp_ansible</code> for example which will cause the installation of these packages:       pulp_ansible ---> pulpcore.plugin ----> pulpcore ----> pulpcore.common 

 h5. Storage 

 In multi-host environments Pulp has a shared storage requirement. The Ansible playbook does not automatically set these up. It assumes that shared storage is already setup correctly.

Back