Remove playbooks since they are now in a project directory

This commit is contained in:
Sam Doran 2018-06-11 15:25:13 -04:00
parent c41f797608
commit d52395cc39
3 changed files with 0 additions and 32 deletions

View File

@ -1,9 +0,0 @@
- name: Cleanup Docker
hosts: "{{ target_hosts | default('all') }}"
become: yes
tasks:
- name: Cleanup unused Docker images, containers, and volumes
import_role:
name: openstack-ops
tasks_from: cleanup_docker.yml

View File

@ -1,9 +0,0 @@
- name: Fetch logs
hosts: "{{ target_hosts | default('all') }}"
become: yes
tasks:
- name: Fetch logs from remote systems
import_role:
name: openstack-ops
tasks_from: fetch_logs.yml

View File

@ -1,14 +0,0 @@
- name: Restart OpenStack services
hosts: "{{ target_hosts | default('all') }}"
become: yes
tasks:
- name: Restart services
import_role:
name: openstack-ops
tasks_from: restart_service.yml
vars:
operations_service_names:
- 'cinder'
- 'swift'
operations_custom_service_map: "{{ lookup('file', 'user_defined_mapping.yaml') | from_yaml }}"