Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge up #23

Closed
wants to merge 11 commits into from
Empty file modified benchmarks/disk-benchmark.sh
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion example.hosts.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ ansible_user='pi'
#ansible_host='my-vps-host-or-ip'

#[nodes:vars]
#ansible_ssh_common_args='-o ProxyCommand="ssh -p 2222 -W %h:%p -q pi@my-vps-host-or-ip"'
#ansible_ssh_common_args='-o ProxyCommand="ssh -p 2222 -W %h:%p -q pi@my-vps-host-or-ip"'
2 changes: 1 addition & 1 deletion tasks/networking/static-networking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
block: |
{% for host in groups['cluster'] %}
{{ ipv4_subnet_prefix }}.{{ hostvars[host].ip_host_octet }} {{ host }} {{ host | regex_replace('\.local', '') }}
{% endfor %}
{% endfor %}

Check failure on line 58 in tasks/networking/static-networking.yml

View workflow job for this annotation

GitHub Actions / Lint

58:23 [new-line-at-end-of-file] no new line character at the end of file
8 changes: 8 additions & 0 deletions tasks/storage/filesystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
state: directory
mode: 0777

- name: Ensure the NFS volume is mounted from "external storage".
ansible.posix.mount:
src: "{{ storage_nfs_mount_drive }}"
path: "/{{ storage_nfs_dir }}/{{ storage_nfs_share_name }}"
fstype: ext4
state: mounted
when: storage_nfs_mount_drive_enable

- name: Ensure NFS is installed.
ansible.builtin.apt:
name: nfs-kernel-server
Expand Down
Loading