add services tag to run all docker service tasks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Phillip Skentelbery
2026-05-05 14:14:10 -06:00
parent 46d8fecdfa
commit b92b18d9fb
+6 -6
View File
@@ -59,24 +59,24 @@
# Deploy services by category for better organization and dependency management # Deploy services by category for better organization and dependency management
- name: Deploy infrastructure services - name: Deploy infrastructure services
import_tasks: infrastructure/main.yml import_tasks: infrastructure/main.yml
tags: infrastructure tags: [infrastructure, services]
- name: Deploy development services - name: Deploy development services
import_tasks: development/main.yml import_tasks: development/main.yml
tags: development tags: [development, services]
- name: Deploy media services - name: Deploy media services
import_tasks: media/main.yml import_tasks: media/main.yml
tags: media tags: [media, services]
- name: Deploy productivity services - name: Deploy productivity services
import_tasks: productivity/main.yml import_tasks: productivity/main.yml
tags: productivity tags: [productivity, services]
- name: Deploy monitoring services - name: Deploy monitoring services
import_tasks: monitoring/main.yml import_tasks: monitoring/main.yml
tags: monitoring tags: [monitoring, services]
- name: Deploy communication services - name: Deploy communication services
import_tasks: communication/main.yml import_tasks: communication/main.yml
tags: communication tags: [communication, services]