feat: add gitlab_registry_url variable

This commit is contained in:
Adrien Waksberg 2022-01-19 16:11:17 +01:00
parent 6b60c360ed
commit fdf44bb252
2 changed files with 7 additions and 0 deletions

View file

@ -5,6 +5,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
## Unreleased
### Added
- feat: add gitlab_registry_url variable
## v1.1.0 - 2021-08-24
### Added

View file

@ -1,6 +1,9 @@
# {{ ansible_managed }}
external_url '{{ gitlab_url }}'
{% if gitlab_registry_url is defined %}
registry_external_url '{{ gitlab_registry_url }}'
{% endif %}
{% if gitlab_pages_url is defined %}
pages_external_url '{{ gitlab_pages_url }}'
{% endif %}