Ansible role to deploy a container registry
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Hervé Beraud a091b9cd21 Remove python-dev from bindep
It is no longer supported by jammy and lead us to the following errors with the announce-release job.

```
No package matching 'python-dev' is available
```

Change-Id: I262efa933975966d6e078eff4e5778bc00331a92
7 months ago
defaults Disable docker iptables support 4 years ago
handlers Use ansible_facts 2 years ago
meta Fix CI 2 years ago
molecule Fixing ci 2 years ago
tasks Remove CentOS 7 based job 1 year ago
templates Restore old task for docker-daemon.json 5 years ago
tests Update role name in test.yml 5 years ago
vars docker: add support for additional sockets 5 years ago
zuul.d Remove CentOS 7 based job 1 year ago
.ansible-lint Use ansible-core 2.11 for tests 2 years ago
.gitignore First commit in Gerrit 5 years ago
.gitreview OpenDev Migration Patch 4 years ago
.yamllint Add molecule testing 4 years ago
LICENSE first commit 5 years ago
README.rst Disable docker iptables support 4 years ago
ansible-requirements.txt Use ansible-core 2.11 for tests 2 years ago
ansible.cfg Fix ansible role name in cfg files 5 years ago
bindep.txt Remove python-dev from bindep 7 months ago
molecule-requirements.txt Fixing ci 2 years ago
requirements.txt Use ansible-core 2.11 for tests 2 years ago
setup.cfg setup.cfg: Replace dashes with underscores 2 years ago
setup.py Remove CentOS 7 based job 1 year ago
test-requirements.txt Fixup requirements 2 years ago
tox.ini Correct the tox option for skipping sdist generation 2 years ago

README.rst

ansible-role-container-registry

A role to deploy a container registry and provide methods to login to it. For now, the role only support Docker Registry v2. The login currently doesn't work with hub.docker.com.

Role Variables

Variables used for container registry
Name Default Value Description
container_registry_debug false Enable debug option in Docker
container_registry_deploy_docker true Whether or not to deploy Docker
container_registry_deploy_docker_distribution true Whether or not to deploy Docker Distribution
container_registry_deployment_user centos User which needs to manage containers
container_registry_docker_options --log-driver=journald --signature-verification=false --iptables=false --live-restore Options given to Docker configuration
container_registry_docker_disable_iptables false Adds --iptables=false to /etc/sysconfig/docker-network config
container_registry_insecure_registries [] Array of insecure registries
container_registry_network_options [undefined] Docker networking options
container_registry_host localhost Docker registry host
container_registry_port 8787 Docker registry port
container_registry_mirror [undefined] Docker registry mirror
container_registry_storage_options -s overlay2 Docker storage options
container_registry_selinux false Whether or not SElinux is enabled for containers
container_registry_additional_sockets [undefined] Additional sockets for containers
container_registry_skip_reconfiguration false Do not perform container registry reconfiguration if it's already configured
container_registry_logins [] A dictionary containing registries and a username and a password associated with the registry. Example: {'docker.io': {'myusername': 'mypassword'}, 'registry.example.com:8787': {'otheruser': 'otherpass'}}

Requirements

  • ansible >= 2.4
  • python >= 2.6

Dependencies

None

Example Playbooks

Modify Image

The following playbook will deploy a Docker registry:

- hosts: localhost
  become: true
  roles:
    - container-registry

License

Apache 2.0

Running local testing

Local testing of this role can be done in a number of ways.

Mimic Zuul

Sometimes its nessisary to setup a test that will mimic what the OpenStack gate will do (Zuul). To run tests that minic the gate, python-virtualenv git, gcc, and ansible are required.

$ sudo yum install python-virtualenv git gcc

Once the packages are installed, create a python virtual environment.

$ python -m virtualenv --system-site-packages ~/test-python
$ ~/test-python/bin/pip install pip setuptools --upgrade

Now install the latest Ansible

$ ~/test-python/bin/pip install ansible

With Ansible installed, activate the virtual environment and run the run-local.yml test playbook.

$ source ~/test-python/bin/activate
(test-python) $ ansible-playbook -i 'localhost,' \
                                 -e "tripleo_src=$(realpath --relative-to="${HOME}" "$(pwd)")" \
                                 -e "ansible_user=${USER}" \
                                 -e "ansible_user_dir=${HOME}" \
                                 -e "ansible_connection=local" \
                                 zuul.d/playbooks/run-local.yml

Running Molecule directly

It is also possible to test this role using molecule directly. When running tests directly it is assumed all of the dependencies are setup and ready to run on the local workstation. When

$ molecule test --all