Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Testing the collection against Quay v3.10.1 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
herve4m authored Dec 18, 2023
1 parent ea20668 commit b3631e8
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
exclude: ^docs/
- id: trailing-whitespace
exclude: ^docs/
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
rev: v1.33.0
hooks:
- id: yamllint
types:
- yaml
- repo: https://github.com/ansible-community/ansible-lint.git
rev: v6.19.0
rev: v6.22.1
hooks:
- id: ansible-lint
types:
- yaml
- repo: https://github.com/psf/black
rev: 23.9.1
rev: 23.12.0
hooks:
- id: black
name: black
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ Quay Container Registry Collection Release Notes
.. contents:: Topics


v1.0.3
======

Release Summary
---------------

Testing against Quay version 3.10.1.

v1.0.2
======

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The collection provides modules for managing your Quay Container Registry deploy

## Included Content

The modules have been tested against versions 3.5, 3.6, 3.7, 3.8, and 3.9 of Quay Container Registry.
The modules have been tested against versions 3.5, 3.6, 3.7, 3.8, 3.9, and 3.10 of Quay Container Registry.

### Modules
Name | Description
Expand Down
6 changes: 6 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,9 @@ releases:
fragments:
- PR28-v1.0.2-summary.yml
release_date: '2023-09-16'
1.0.3:
changes:
release_summary: Testing against Quay version 3.10.1.
fragments:
- PR29-v1.0.3-summary.yml
release_date: '2023-12-18'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: herve4m
name: quay
version: 1.0.2
version: 1.0.3
readme: README.md
authors:
- Hervé Quatremain <rv4m@yahoo.co.uk>
Expand Down
3 changes: 1 addition & 2 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
requires_ansible: '>=2.9.10'
requires_ansible: ">=2.15.0"
action_groups:
quay:
- quay_api_token
Expand All @@ -23,4 +23,3 @@ action_groups:
- quay_team
- quay_user
- quay_vulnerability_info
...
3 changes: 1 addition & 2 deletions plugins/modules/quay_repository_mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"""

EXAMPLES = r"""
- name: Ensure mirroring configuration is set for the existing production/smallimage repo
- name: Ensure mirroring is set for the existing production/smallimage repo
herve4m.quay.quay_repository_mirror:
name: production/smallimage
external_reference: quay.io/projectquay/quay
Expand All @@ -156,7 +156,6 @@
force_sync: true
quay_host: https://quay.example.com
quay_token: vgfH9zH5q6eV16Con7SvDQYSr0KPYQimMHVehZv7
"""

RETURN = r""" # """
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/quay_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
- name: Ensure the user is removed
herve4m.quay.quay_user:
username: dwilde
username: dwilde
state: absent
quay_host: https://quay.example.com
quay_token: vgfH9zH5q6eV16Con7SvDQYSr0KPYQimMHVehZv7
Expand Down
6 changes: 3 additions & 3 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "3.8"
services:
postgres:
image: quay.io/centos7/postgresql-12-centos7
image: quay.io/centos7/postgresql-13-centos7
environment:
POSTGRESQL_USER: quayuser
POSTGRESQL_PASSWORD: quaypass
Expand All @@ -13,7 +13,7 @@ services:
- "./postgresql-extension.sh:/opt/app-root/src/postgresql-start/postgresql-extension.sh:ro"

redis:
image: quay.io/centos7/redis-5-centos7
image: quay.io/centos7/redis-6-centos7
environment:
REDIS_PASSWORD: strongpassword

Expand All @@ -26,7 +26,7 @@ services:
- "8089:8080"

quay:
image: quay.io/projectquay/quay:v3.9.1
image: quay.io/projectquay/quay:v3.10.1
volumes:
- "./quay-config:/conf/stack:Z"
- "./quay-delay.sh:/quay-registry/conf/init/a-delay.sh:ro"
Expand Down

0 comments on commit b3631e8

Please sign in to comment.