From fb39f1bfc89650c5c10ccdfd1c5c42fcccddd698 Mon Sep 17 00:00:00 2001 From: uumas Date: Thu, 12 Mar 2026 00:36:11 +0200 Subject: [PATCH] service: Don't require postgres tag specified --- roles/service/tasks/validation.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/roles/service/tasks/validation.yaml b/roles/service/tasks/validation.yaml index 5d35bcd..4e9a6aa 100644 --- a/roles/service/tasks/validation.yaml +++ b/roles/service/tasks/validation.yaml @@ -9,11 +9,6 @@ msg: "service_container_user must be a string, not int." when: service_container_user is not string -- name: Fail if service_database_type is postgres but service_postgres_tag is not set - ansible.builtin.fail: - msg: "service_postgres_tag needs to be set when database type is postgres" - when: "service_database_type == 'postgres' and service_postgres_tag is not defined" - - name: Fail if template mount source doesn't end in .j2 ansible.builtin.fail: msg: "Template mount source file name needs to end in .j2. The file {{ item.source }} of {{ service_name }} doesn't."