-
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 #72 from fabric-testbed/rcbeta7
Rcbeta7
- Loading branch information
Showing
143 changed files
with
2,776 additions
and
17,945 deletions.
There are no files selected for viewing
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
17 changes: 0 additions & 17 deletions
17
instrumentize/ansible/playbook_complete_fabric_rack_install.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
9 changes: 9 additions & 0 deletions
9
instrumentize/ansible/playbook_fabric_central_ping_plus_install.yml
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,9 @@ | ||
--- | ||
# Creating the Fabric Central Minio object store setup. | ||
- hosts: ping-plus | ||
roles: | ||
- ../prometheus/ansible/roles/fabric_ping_plus | ||
|
||
# moved to host file | ||
# vars: | ||
# install_name: ping-plus |
29 changes: 0 additions & 29 deletions
29
instrumentize/ansible/playbook_fabric_central_remove_containers.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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
--- | ||
# Creating the Fabric Dev Central monitoring setup. | ||
- hosts: dev-metrics | ||
- hosts: metrics-b | ||
|
||
roles: | ||
- ../prometheus/ansible/roles/fabric_central | ||
|
||
# vars_files: | ||
# - tmp_deployment_files/monitoring/private_vars/dev_central_vars.yml | ||
|
17 changes: 0 additions & 17 deletions
17
instrumentize/ansible/playbook_fabric_experiment_install_prometheus.yml
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
instrumentize/ansible/playbook_fabric_minio_backup_install.yml
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 @@ | ||
--- | ||
# Creating the Fabric Central Minio Backup object store setup. | ||
- hosts: minio-b | ||
|
||
roles: | ||
- ../minio/ansible/roles/central | ||
|
||
# moved to hosts file | ||
# vars: | ||
# install_name: minio_b | ||
|
11 changes: 11 additions & 0 deletions
11
instrumentize/ansible/playbook_fabric_minio_production_install.yml
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 @@ | ||
--- | ||
# Creating the Fabric Central Minio Production object store setup. | ||
- hosts: minio-p | ||
|
||
roles: | ||
- ../minio/ansible/roles/central | ||
|
||
# moved to hosts file | ||
# vars: | ||
# install_name: minio_p | ||
|
11 changes: 11 additions & 0 deletions
11
instrumentize/ansible/playbook_fabric_thanos_compactor_install.yml
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 @@ | ||
--- | ||
# Creating the Fabric Central Minio Production object store setup. | ||
- hosts: compactor-p | ||
|
||
roles: | ||
- ../prometheus/ansible/roles/fabric_compactor | ||
|
||
# moved to hosts file | ||
# vars: | ||
# install_name: compactor | ||
|
2 changes: 0 additions & 2 deletions
2
instrumentize/ansible/playbook_geni_generate_slice_hosts_and_vars.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
instrumentize/ansible/playbook_remove_fabric_deployment_files.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
instrumentize/minio/ansible/roles/central/defaults/main.yml
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,14 @@ | ||
#ansible_python_interpreter: /usr/bin/python3 | ||
|
||
|
||
docker_network_name: "{{ install_name }}" | ||
base_data_dir: "/opt/data/{{ install_name }}" | ||
base_install_dir: "/opt/{{ install_name }}" | ||
|
||
# Mount of data drive only has to be done the first time a VM is setup | ||
mount_data_drive: no | ||
minio_username: fab_minio | ||
|
||
|
||
minio_port: 9000 | ||
minio_console_port: 9099 |
34 changes: 34 additions & 0 deletions
34
instrumentize/minio/ansible/roles/central/tasks/create_mount_data_dir_tasks.yml
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,34 @@ | ||
# Setup data dir | ||
- name: Create Data Directory | ||
file: | ||
path: /opt/data | ||
recurse: yes | ||
state: directory | ||
mode: 0755 | ||
owner: 0 | ||
group: 0 | ||
become: yes | ||
|
||
- name: Create Data Partition | ||
community.general.parted: | ||
device: /dev/vdb | ||
number: 1 | ||
state: present | ||
fs_type: ext4 | ||
label: gpt | ||
become: yes | ||
|
||
- name: Create a ext4 filesystem on /dev/vdb1 | ||
community.general.filesystem: | ||
fstype: ext4 | ||
dev: /dev/vdb1 | ||
state: present | ||
become: yes | ||
|
||
- name: Mount As /opt/data | ||
ansible.posix.mount: | ||
path: /opt/data | ||
src: /dev/vdb1 | ||
fstype: ext4 | ||
state: mounted | ||
become: yes |
Oops, something went wrong.