17 lines
475 B
YAML
17 lines
475 B
YAML
|
|
---
|
||
|
|
# Minimal playbook — only deploys the Custodian automation SSH key.
|
||
|
|
# Use this instead of bootstrap.yaml when you only need key injection:
|
||
|
|
#
|
||
|
|
# cd ~/railiance-infra/ansible
|
||
|
|
# ansible-playbook playbooks/custodian-agent.yaml -u tegwick --limit Railiance01
|
||
|
|
#
|
||
|
|
# Or via Makefile from repo root:
|
||
|
|
# make provision-custodian-agent-host HOST=Railiance01
|
||
|
|
|
||
|
|
- hosts: all
|
||
|
|
become: true
|
||
|
|
vars_files:
|
||
|
|
- ../inventory/group_vars/all.yaml
|
||
|
|
roles:
|
||
|
|
- role: custodian_agent
|