160da96973
Make Tobiko an InfraRed plugin for simple and fine-grained executions (both personal and in CI/CD environments). This patch add a plugin spec, main entry playbook and several tasks for basic config & run execution. Change-Id: Ifcff4d79b4c920c28cc8170c4b8a8e9821c7b70d
13 lines
295 B
YAML
13 lines
295 B
YAML
---
|
|
- name: Generate os-faults configuration
|
|
hosts: undercloud
|
|
any_errors_fatal: true
|
|
gather_facts: yes
|
|
|
|
tasks:
|
|
- name: Create os-faults configuration file
|
|
template:
|
|
src: "templates/os-faults.yaml.j2"
|
|
dest: "~/os-faults.yaml"
|
|
mode: 0755
|