This commit is contained in:
parent
92d5c9d8ed
commit
b07226127c
@ -1,6 +1,7 @@
|
||||
---
|
||||
# @var renovatebot_image:description: Docker image to use.
|
||||
renovatebot_image: renovate/renovate:latest
|
||||
renovatebot_service_stopped: False
|
||||
|
||||
# @var renovatebot_interval:description: Interval for the systemd timer.
|
||||
renovatebot_interval: daily
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
- name: Restart docker-renovate
|
||||
systemd:
|
||||
state: restarted
|
||||
state: "{{ renovatebot_service_stopped | ternary('stopped', 'restarted', 'restarted') }}"
|
||||
daemon_reload: yes
|
||||
name: renovate
|
||||
listen: __renovate_restart
|
||||
|
@ -8,6 +8,8 @@
|
||||
- epel-release
|
||||
- python-pip
|
||||
- python-virtualenv
|
||||
renovatebot_service_stopped: True
|
||||
renovatebot_token: personal-access-token
|
||||
|
||||
roles:
|
||||
- role: xoxys.docker_engine
|
||||
|
@ -12,5 +12,4 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
||||
def test_renovate_running_and_enabled(host):
|
||||
service = host.service("renovate.timer")
|
||||
|
||||
assert service.is_running
|
||||
assert service.is_enabled
|
||||
|
@ -23,6 +23,6 @@
|
||||
name: renovate.timer
|
||||
daemon_reload: yes
|
||||
enabled: yes
|
||||
state: started
|
||||
state: "{{ renovatebot_service_stopped | ternary('stopped', 'started', 'started') }}"
|
||||
become: True
|
||||
become_user: root
|
||||
|
@ -2,12 +2,10 @@
|
||||
{{ ansible_managed | comment }}
|
||||
|
||||
{% if renovatebot_github_token is defined %}
|
||||
GITHUB_COM_TOKEN="{{ renovatebot_github_token }}"
|
||||
{% endif %}
|
||||
RENOVATE_AUTODISCOVER="{{ renovatebot_autodiscover | bool | lower }}"
|
||||
RENOVATE_ENDPOINT="{{ renovatebot_endpoint }}"
|
||||
RENOVATE_GIT_AUTHOR="{{ renovatebot_git_author }}"
|
||||
RENOVATE_PLATFORM="{{ renovatebot_platform }}"
|
||||
{% if renovatebot_token is defined %}
|
||||
RENOVATE_TOKEN="{{ renovatebot_token }}"
|
||||
GITHUB_COM_TOKEN={{ renovatebot_github_token }}
|
||||
{% endif %}
|
||||
RENOVATE_AUTODISCOVER={{ renovatebot_autodiscover | bool | lower }}
|
||||
RENOVATE_ENDPOINT={{ renovatebot_endpoint }}
|
||||
RENOVATE_GIT_AUTHOR={{ renovatebot_git_author }}
|
||||
RENOVATE_PLATFORM={{ renovatebot_platform }}
|
||||
RENOVATE_TOKEN={{ renovatebot_token }}
|
||||
|
Loading…
Reference in New Issue
Block a user