11 lines
377 B
YAML
11 lines
377 B
YAML
|
|
---
|
||
|
|
# 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]
|