-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from fabric-testbed/dev
Dev
- Loading branch information
Showing
104 changed files
with
33,213 additions
and
1,275 deletions.
There are no files selected for viewing
5 changes: 0 additions & 5 deletions
5
instrumentize/ansible/fabric_experiment_instramentize/ansible.cfg
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
instrumentize/ansible/fabric_experiment_instramentize/bootstrap_tasks/control_node_tasks.yml
This file was deleted.
Oops, something went wrong.
74 changes: 0 additions & 74 deletions
74
...mentize/ansible/fabric_experiment_instramentize/bootstrap_tasks/distribute_keys_tasks.yml
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
...umentize/ansible/fabric_experiment_instramentize/bootstrap_tasks/install_docker_tasks.yml
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
instrumentize/ansible/fabric_experiment_instramentize/bootstrap_tasks/sudoer_ansible
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
...ize/ansible/fabric_experiment_instramentize/playbook_fabric_experiment_install_docker.yml
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...ansible/fabric_experiment_instramentize/playbook_fabric_experiment_install_prometheus.yml
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
instrumentize/ansible/fabric_experiment_instramentize/run_remote_docker_installs.py
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
instrumentize/ansible/fabric_experiment_instramentize/run_remote_prometheus_install.py
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
instrumentize/ansible/fabric_experiment_instramentize/scraps/clone_repo_tasks.yml
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
.../ansible/fabric_experiment_instramentize/scraps/playbook_fabric_experiment_bootstrap1.yml
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
.../ansible/fabric_experiment_instramentize/scraps/playbook_fabric_experiment_bootstrap2.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
readme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
# used to turn off all worker node file beats | ||
- hosts: workers | ||
become: true | ||
tags: worker_service_management | ||
tasks: | ||
- name: Filebeat Service all workers started | ||
ansible.builtin.service: | ||
name: filebeat | ||
state: started | ||
enabled: true # left on as default | ||
|
||
- name: Metricbeat Service all workers started | ||
ansible.builtin.service: | ||
name: metricbeat | ||
state: started | ||
enabled: true # left on as default | ||
|
||
- name: Packet Service all workers started | ||
ansible.builtin.service: | ||
name: packetbeat | ||
state: started | ||
enabled: true # left on as default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
# used to turn off all worker node file beats | ||
- hosts: workers | ||
become: true | ||
tags: worker_service_management | ||
tasks: | ||
- name: Filebeat Service all workers started | ||
ansible.builtin.service: | ||
name: filebeat | ||
state: started | ||
enabled: true # left on as default |
Oops, something went wrong.