service: Add support for service postgres containers

This commit is contained in:
uumas
2024-11-11 12:23:53 +02:00
parent e85b753518
commit eccc308bcf
5 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
- 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"