mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Refactor MIG build process to run asynchronously with optional wait control
- Moved MIG data build commands into a dedicated 02_build_data.yml task file. - Added async execution (async: 3600, poll: 0) for non-blocking build. - Introduced mig_wait_for_build variable to optionally wait for completion. - Added debug message to inform how to disable waiting via build_data.wait_for=false for performance. - Updated config to use nested build_data.enabled and build_data.wait_for structure. - Adjusted variable lookups accordingly. https://chatgpt.com/share/689b54d2-e3b0-800f-91df-939ebc5e12ef
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
# General
|
||||
application_id: web-app-mig # ID of the application, should be the name of the role folder
|
||||
application_id: web-app-mig
|
||||
|
||||
# Docker
|
||||
docker_compose_flush_handlers: true
|
||||
docker_pull_git_repository: true
|
||||
docker_repository_address: "https://github.com/kevinveenbirkenbach/meta-infinite-graph"
|
||||
docker_compose_flush_handlers: true
|
||||
docker_pull_git_repository: true
|
||||
docker_repository_address: "https://github.com/kevinveenbirkenbach/meta-infinite-graph"
|
||||
|
||||
# Helper variables
|
||||
mig_image: "mig:latest"
|
||||
mig_container: "mig"
|
||||
mig_build_data: "{{ applications | get_app_conf(application_id, 'build_data') }}"
|
||||
mig_image: "mig:latest"
|
||||
mig_container: "mig"
|
||||
mig_build_data: "{{ applications | get_app_conf(application_id, 'build_data.enabled') }}"
|
||||
mig_wait_for_build: "{{ applications | get_app_conf(application_id, 'build_data.wait_for') }}"
|
Reference in New Issue
Block a user