[!IMPORTANT]
We've moved!
This repository is no longer used and has been archived for historical purposes.
You can find the latest code at https://github.com/redhat-cop/quay_configuration, where we continue to develop and maintain the collection.
We also renamed the collection in the new repository, from
herve4m.quay
toinfra.quay_configuration
The modules have not changed: they retain their names and parameters. For example, the oldherve4m.quay.quay_repository
module is now available asinfra.quay_configuration.quay_repository
- Issues can be filed against our new repository at https://github.com/redhat-cop/quay_configuration/issues
- The collection is available from Ansible Galaxy at https://galaxy.ansible.com/ui/repo/published/infra/quay_configuration/
- You can install the new collection on your system by running the following command:
ansible-galaxy collection install infra.quay_configuration
The collection provides modules for managing your Quay Container Registry deployment.
After you install the collection, use the ansible-doc
command to access the collection documentation.
Run the ansible-doc -l herve4m.quay
command to list the modules that the collection provides.
For accessing the documentation of a module, use the ansible-doc herve4m.quay.<module-name>
command.
You can also access the documentation from Ansible Galaxy.
Name | Description |
---|---|
quay_api_token |
Create OAuth access tokens for accessing the Quay Container Registry API |
quay_application |
Manage Quay Container Registry applications |
quay_default_perm |
Manage Quay Container Registry default repository permissions |
quay_docker_token |
Manage tokens for accessing Quay Container Registry repositories |
quay_first_user |
Create the first user account |
quay_layer_info |
Gather information about image layers in Quay Container Registry |
quay_manifest_label |
Manage Quay Container Registry image manifest labels |
quay_manifest_label_info |
Gather information about manifest labels in Quay Container Registry |
quay_message |
Manage Quay Container Registry global messages |
quay_notification |
Manage Quay Container Registry repository notifications |
quay_organization |
Manage Quay Container Registry organizations |
quay_proxy_cache |
Manage Quay Container Registry proxy cache configurations |
quay_quota |
Manage Quay Container Registry organizations quota |
quay_repository |
Manage Quay Container Registry repositories |
quay_repository_mirror |
Manage Quay Container Registry repository mirror configurations |
quay_robot |
Manage Quay Container Registry robot accounts |
quay_tag |
Manage Quay Container Registry image tags |
quay_tag_info |
Gather information about tags in a Quay Container Registry repository |
quay_team |
Manage Quay Container Registry teams |
quay_team_ldap |
Synchronize Quay Container Registry teams with LDAP groups |
quay_team_oidc |
Synchronize Quay Container Registry teams with OIDC groups |
quay_user |
Manage Quay Container Registry users |
Run the ansible-doc -t filter -l herve4m.quay
command to list the filters that the collection provides.
For accessing the documentation of a filter, use the ansible-doc -t filter herve4m.quay.<filter-name>
command.
Name | Description |
---|---|
quay_docker_config |
Build a Docker configuration in JSON format |
Run the ansible-doc -t role -l herve4m.quay
command to list the roles that the collection provides.
For accessing the documentation of a role, use the ansible-doc -t role herve4m.quay.<role-name>
command.
Name | Description |
---|---|
quay_org |
Create and configure a Quay Container Registry organization |
Before using the Quay collection, install it by using the Ansible Galaxy command-line tool:
ansible-galaxy collection install herve4m.quay
As an alternative, you can declare the collection in a collections/requirements.yml
file inside your Ansible project:
---
collections:
- name: herve4m.quay
Use the ansible-galaxy collection install -r collections/requirements.yml
command to install the collection from this file.
If you manage your Ansible project in automation controller, then automation controller detects this collections/requirements.yml
file, and automatically installs the collection.
You can also download the tar archive from Ansible Galaxy, and then manually install the collection.
See Ansible -- Using collections for more details.
The modules in the collection access Quay through its REST API. The modules can connect to the API by using a username and a password, or by using an OAuth access token.
There are two ways to get an OAuth access token:
herve4m.quay.quay_first_user
Ansible module to create the first user account just after you installed Quay Container Registry.
The module creates and then returns an OAuth access token for the user.
This token is only valid for 2 hours and 30 minutes.Before you can use the collection, you must generate an OAuth access token. To do so, follow these steps:
Generate Token
menu.Administer Organization
, Administer Repositories
, Create Repositories
, Super User Access
, and Administer User
.Generate Token
.quay_token
module parameter.The OAuth access token is linked to the user account you use to create it.
Your user account needs to have superuser permissions for some modules to operate correctly.
For example, to manage user accounts, the herve4m.quay.quay_user
module needs a token created by a user that have superuser permissions.
See the Quay.io API documentation for more details.
Just after you installed Quay Container Registry, and before you do anything else, you can create the first user and generate an OAuth access token for that user.
After this initial operation, you can create additional user accounts by using the herve4m.quay.quay_user
module and generate OAuth access tokens for these additional accounts by using the herve4m.quay.quay_api_token
module.
The following playbook example uses the herve4m.quay.quay_first_user
module to create the first user:
---
- name: Bootstrapping a fresh Quay Container Registry installation
hosts: localhost
tasks:
# You must probably ensure that the user account you create, admin in this
# example, has superuser permissions so that you can use the generated
# token to create additional objects.
# To give the user superuser permissions, add its name to the SUPER_USERS
# section in the config.yaml file.
- name: Ensure the initial user exists
herve4m.quay.quay_first_user:
username: admin
email: admin@example.com
password: S6tGwo13
create_token: true
quay_host: https://quay.example.com
validate_certs: true
register: result
# The token is valid for 2 hours and 30 minutes
- name: Display the generated OAuth access token
debug:
msg: "Access token: {{ result['access_token'] }}"
# Using the OAuth access token to continue configuring Quay
- name: Ensure the user exists
herve4m.quay.quay_user:
username: lvasquez
email: lvasquez@example.com
password: vs9mrD55NP
state: present
quay_token: "{{ result['access_token'] }}"
quay_host: https://quay.example.com
validate_certs: true
The requirements for the herve4m.quay.quay_first_user
module are as follows:
FEATURE_USER_INITIALIZE
in config.yaml
).AUTHENTICATION_TYPE
to Database
in config.yaml
or Internal Authentication
to Local Database
in the configuration web UI).SUPER_USERS
section in the config.yaml
file.When your play calls multiple modules from the collection, you can group common module parameters in the module_defaults
section, under the group/herve4m.quay.quay
subsection.
For example, instead of repeating the quay_host
, quay_username
, and quay_password
parameters in each task, you can declare them at the top of your play:
---
- name: Creating the development organization and the developers team
hosts: localhost
module_defaults:
group/herve4m.quay.quay:
quay_host: https://quay.example.com
quay_username: admin
quay_password: S6tGwo13
tasks:
- name: Ensure the organization exists
herve4m.quay.quay_organization:
name: development
email: devorg@example.com
time_machine_expiration: "1d"
state: present
- name: Ensure the additional user exists
herve4m.quay.quay_user:
username: dwilde
email: dwilde@example.com
password: 7BbB8T6c
state: present
- name: Ensure the team exists in the development organization
herve4m.quay.quay_team:
name: developers
organization: development
role: creator
members:
- lvasquez
- dwilde
append: false
state: present
We welcome community contributions to this collection. If you find problems, then please open an issue or create a pull request.
More information about contributing can be found in the Contribution Guidelines.
See the changelog.
GNU General Public License v3.0 or later.
See LICENSE to read the full text.