pieterlexis / pulp_installer

A collection of Ansible roles to install & configure Pulp 3 from PyPI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pulp CI

Pulp 3 Ansible Installer

A collection of roles to install or upgrade Pulp 3. Can also reconfigure or add plugins to an existing install.

The Pulp 3 Ansible Installer consists of a collection of roles. Each role installs and configures a component of Pulp. The roles are not currently available on Ansible Galaxy; to run the Pulp 3 Ansible installer, the pulp_installer git repository must be cloned or downloaded.

This version of the installer, 3.3.0, installs Pulp 3.3.0 specifically.

If run against an older version of Pulp 3, it will upgrade it to 3.3.0.

System Requirements

The control node must have Python 3 and Ansible installed.

The managed node must be one of these currently supported operating systems:

  • CentOS 7
  • Debian Buster
  • Fedora 30 or later

Variables

Each role documents all the variables that it uses in its own README. Some variables are used by multiple roles. In that case, they are be documented in their primary role and mentioned in the shared_variables section the other roles.

Required Variables: Most variables have sane defaults but a few are required. See example-use/group_vars/all for the minimal set of required variables.

Ansible Boilerplate

These roles can be used against any managed node and are highly configurable. Knowledge of ansible basics will be helpful, but even if you are new to Ansible, this section will get you started, or you can try the Vagrant installations to bypass the Ansible boilerplate.

First, you will need to configure ssh between your control node and your managed node. When you can ssh into the managed node without a password, you are ready to move to the next step.

Next, add the managed node's hostname or ip address to /etc/ansible/hosts.

It may be helpful to ensure that Ansible can communicate with the managed node.

ansible all -m ping -u <managed_node_username>

Using the example playbook

The playbook has external requirements which should be installed from ansible-galaxy.

ansible-galaxy install -r requirements.yml

You should now be able to run the example playbook.

Some of the roles used in the playbook use root privalages on the managed node, so when prompted, you will need to provide the password for the managed node user.

ansible-playbook example-use/playbook.yml -u <managed_node_username> --ask-become-pass

To configure a custom install, you will need to set configuration variables. In the simplest case, they can be set in the playbook. See the ansible docs for more flexible idiomatic alternatives.

Testing

The tests can be run as they are on travis with tox, or they can run with various options using molecule directly.

Requirements: Install Docker, and add yourself to the group that is authorized to administer containers, and log out and back in to make the permissions change take effect. The authorized group is typically the "docker" group:

gpasswd --add "$(whoami)" docker

NOTE: Docker containers can differ from bare-metal or VM OS installs. They can have different packages installed, they can run different kernels, and so on.

Using Tox:

  1. Install tox. This can be done through the system package manager or into a virtualenv:

    python3 -m venv ~/.venvs/pulp_installer
    pip install --upgrade pip
    pip install tox
  2. Install at least one of the Python interpreters listed in tox.ini. These are currently Python 2.7 and 3.6. WARNING: Anyone added to the docker group is root equivalent. More information here and here.

  3. Run tox. If you only have a subset of the supported Python interpreters available, specify which environments to exercise:

    tox -e py36

Using Molecule:

  1. Install molecule, molecule-inspec, and ansible-lint.

It is recommended that you do so with pip in a virtualenv. 2. Run molecule commands.

Test all scenarios on all hosts.

molecule test --all

Test a specific scenario.

molecule test --scenario-name source

Use debug for increased verbosity.

molecule --debug test --all

Create and provision, but don't run tests or destroy.

molecule converge --all

Roles

pulp_installer is equipped with the following roles:

  • pulp: installs Pulp 3 from PyPi or source and provides basic config.
  • pulp-content: install, configure, and set the state of pulp content app.
  • pulp-database: optionally install a database, then configure for Pulp.
  • pulp-redis: install and start Redis, and install RQ in the Pulp virtualenv.
  • pulp-resource-manager: install, configure, and set the state of the pulp resouce manager.
  • pulp-webserver: install, configure, start, and enable a web server.
  • pulp-workers: install, configure, and set the state of pulp workers.
  • pulp-devel: installs useful tools and adds some config files for a Pulp 3 development environment.

About

A collection of Ansible roles to install & configure Pulp 3 from PyPI

License:GNU General Public License v2.0


Languages

Language:Python 88.1%Language:Ruby 7.7%Language:Shell 1.6%Language:Vim Script 1.3%Language:Gherkin 1.3%