From f1c7dcdf2a23a2c01cad1d04e43052772a18433b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 23 Aug 2023 23:18:11 +0000 Subject: [PATCH 1/2] chore(deps): update mysql docker tag to v8 --- host_vars/pottwal.n39.eu/vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host_vars/pottwal.n39.eu/vars.yml b/host_vars/pottwal.n39.eu/vars.yml index 2058bfc..79018cc 100644 --- a/host_vars/pottwal.n39.eu/vars.yml +++ b/host_vars/pottwal.n39.eu/vars.yml @@ -28,7 +28,7 @@ hedgedoc_postgres_password: "{{ vault_hedgedoc_postgres_password }}" redmine_host_port: 8087 redmine_domain_name: redmine.n39.eu redmine_image: redmine:4.2.10 -redmine_mysql_image: mysql:5.7 +redmine_mysql_image: mysql:8.1 redmine_database: redmine redmine_database_password: "{{ vault_redmine_database_password }}" From 66ebb7a09b00e70d6091b53f5ef1d7216934a4f1 Mon Sep 17 00:00:00 2001 From: David Kilias Date: Wed, 20 Sep 2023 22:04:08 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20add=20a?= =?UTF-8?q?nsible=20tag=20to=20redmine=20jobs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- host-pottwal.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/host-pottwal.yml b/host-pottwal.yml index 93e9d39..caa0356 100644 --- a/host-pottwal.yml +++ b/host-pottwal.yml @@ -350,16 +350,22 @@ ansible.builtin.stat: path: "{{ data_dir }}/redmine" register: redmine_dir + tags: + - redmine - name: Fail if redmine data dir does not exist ansible.builtin.fail: msg: "Redmine data dir is missing, please restore from the backup!" when: not redmine_dir.stat.exists + tags: + - redmine - name: Setup Redmine docker network docker_network: name: redminenet state: present internal: true + tags: + - redmine - name: Setup Redmine MySQL container docker_container: @@ -377,6 +383,8 @@ - "{{ data_dir }}/redmine/mysql:/var/lib/mysql" networks: - name: redminenet + tags: + - redmine - name: Setup Redmine container docker_container: @@ -401,6 +409,8 @@ networks: allow_more_present networks: - name: redminenet + tags: + - redmine - name: Setup proxy site "{{ redmine_domain_name }}" include_role: @@ -408,6 +418,8 @@ vars: site_name: "{{ redmine_domain_name }}" proxy_port: "{{ redmine_host_port }}" + tags: + - redmine - name: Ensure the uptime-kuma directories exist file: