mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	sys-svc-rdbms: Refactor database service templates and add version support for Magento
- Unified Jinja2 variable spacing in tasks and templates
- Introduced database_image and database_version variables in vars/database.yml
- Updated mariadb.yml.j2 and postgres.yml.j2 to use {{ database_image }}:{{ database_version }}
- Ensured env file paths and includes are consistent
- Prepared support for versioned database images (needed for Magento deployment)
Ref: https://chatgpt.com/share/68b96a9d-c100-800f-856f-cd23d1eda2ed
			
			
This commit is contained in:
		| @@ -8,10 +8,10 @@ | ||||
|       path: "{{ docker_compose.directories.env }}" | ||||
|       state: directory | ||||
|       mode: "0755" | ||||
|   - name: "For '{{ application_id }}': Create {{database_env}}" | ||||
|   - name: "For '{{ application_id }}': Create {{ database_env }}" | ||||
|     template:  | ||||
|       src: "env/{{database_type}}.env.j2" | ||||
|       dest: "{{database_env}}" | ||||
|       src: "env/{{ database_type }}.env.j2" | ||||
|       dest: "{{ database_env }}" | ||||
|     notify: docker compose up | ||||
|   when: not applications | get_app_conf(application_id, 'features.central_database', False) | ||||
|  | ||||
| @@ -19,7 +19,7 @@ | ||||
|   # I don't know why this includes leads to that the application_id in vars/main.yml of the database role isn't used | ||||
|   # This is the behaviour which I want, but I'm still wondering why ;) | ||||
|   include_role: | ||||
|     name: "svc-db-{{database_type}}" | ||||
|     name: "svc-db-{{ database_type }}" | ||||
|   when: applications | get_app_conf(application_id, 'features.central_database', False) | ||||
|  | ||||
| - name: "For '{{ application_id }}': Add Entry for Backup Procedure" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user