2026-06-11 13:50:11 +02:00
|
|
|
---
|
|
|
|
|
# workstation.yml — developer environment for workstation-class hosts.
|
|
|
|
|
# Targets the `control` group (ubongo) for now; generalizes to a dedicated
|
|
|
|
|
# `workstations` group when mamba joins. Run: make deploy PLAYBOOK=workstation
|
|
|
|
|
- name: Apply developer environment to workstation-class hosts
|
|
|
|
|
hosts: control
|
|
|
|
|
become: true
|
|
|
|
|
roles:
|
|
|
|
|
- role: dev_env
|
|
|
|
|
tags: [dev_env]
|
2026-06-18 12:03:44 +02:00
|
|
|
- role: integration_test
|
|
|
|
|
tags: [integration_test]
|