-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into oonimeasurements
- Loading branch information
Showing
73 changed files
with
1,986 additions
and
723 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
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
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 @@ | ||
prometheus_metrics_password: "{{ lookup('amazon.aws.aws_secret', 'oonidevops/ooni_services/prometheus_metrics_password', profile='oonidevops_user_dev') }}" |
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 @@ | ||
prometheus_metrics_password: "{{ lookup('amazon.aws.aws_secret', 'oonidevops/ooni_services/prometheus_metrics_password', profile='oonidevops_user_prod') }}" |
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
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,2 @@ | ||
admin_group_name: adm | ||
tls_cert_dir: /var/lib/dehydrated/certs |
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,6 +1,13 @@ | ||
[all] | ||
monitoring.ooni.org | ||
openvpn-server1.ooni.io | ||
# This requires manual setup of ~/.ssh/config | ||
#codesign-box | ||
|
||
[prod] | ||
data.ooni.org | ||
oonidata.ooni.org | ||
monitoring.ooni.org | ||
openvpn-server1.ooni.io | ||
notebook.ooni.org | ||
|
||
[dev] | ||
oonidatatest.ooni.nu |
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,8 @@ | ||
# This playbook is to be run on hosts that don't support bootstrapping the base | ||
# OS setup with something other than ansible (eg. cloud-init) | ||
- name: Bootstrap the ssh_users on target host | ||
hosts: all | ||
remote_user: root | ||
roles: | ||
- ssh_users | ||
- bootstrap |
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
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 +1,4 @@ | ||
- src: willshersystems.sshd | ||
- src: nginxinc.nginx | ||
- src: geerlingguy.certbot | ||
- src: geerlingguy.node_exporter |
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,45 @@ | ||
- ansible.builtin.include_role: | ||
name: ssh_users | ||
tags: | ||
- ssh_users | ||
|
||
- name: Set the hostname to inventory_hostname | ||
ansible.builtin.hostname: | ||
name: "{{ inventory_hostname }}" | ||
|
||
- name: Install common packages | ||
ansible.builtin.apt: | ||
name: | ||
- bash-completion | ||
- ca-certificates | ||
- curl | ||
- file | ||
- git | ||
- htop | ||
- iotop | ||
- lsof | ||
- lvm2 | ||
- man-db | ||
- mtr | ||
- net-tools | ||
- openssl | ||
- python3-passlib | ||
- rsync | ||
- screen | ||
- strace | ||
- tcpdump | ||
- tmux | ||
- vim | ||
state: latest | ||
update_cache: yes | ||
install_recommends: no | ||
|
||
- ansible.builtin.include_role: | ||
name: nftables | ||
tags: | ||
- nftables | ||
|
||
- ansible.builtin.include_role: | ||
name: prometheus_node_exporter | ||
tags: | ||
- node_exporter |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
miniconda_install_dir: /opt/miniconda | ||
admin_group_name: admin |
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 @@ | ||
--- | ||
- name: Ensure miniconda directory exists | ||
ansible.builtin.file: | ||
path: "{{ miniconda_install_dir }}" | ||
state: directory | ||
owner: miniconda | ||
group: "{{ admin_group_name }}" | ||
|
||
- name: Download the miniconda installer | ||
ansible.builtin.get_url: | ||
url: "https://repo.anaconda.com/miniconda/Miniconda3-py312_24.7.1-0-Linux-x86_64.sh" | ||
dest: "{{ miniconda_install_dir }}/miniconda.sh" | ||
checksum: "sha256:33442cd3813df33dcbb4a932b938ee95398be98344dff4c30f7e757cd2110e4f" | ||
mode: "0700" | ||
|
||
- name: Run the miniconda installer | ||
ansible.builtin.shell: | | ||
bash {{ miniconda_install_dir }}/miniconda.sh -b -u -p {{ miniconda_install_dir }} | ||
- name: Delete installer | ||
ansible.builtin.file: | ||
path: "{{ miniconda_install_dir }}/miniconda.sh" | ||
state: absent |
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,21 @@ | ||
--- | ||
- name: Ensure miniconda user exists | ||
ansible.builtin.user: | ||
name: miniconda | ||
shell: /bin/false | ||
|
||
- name: Check if Miniconda is installed | ||
ansible.builtin.stat: | ||
path: "{{ miniconda_install_dir }}/bin/conda" | ||
register: miniconda_bin | ||
|
||
- include_tasks: install.yml | ||
when: not miniconda_bin.stat.exists | ||
|
||
- name: "install conda packages" | ||
ansible.builtin.shell: | ||
cmd: "{{ miniconda_install_dir }}/bin/conda install -y {{ item }}" | ||
loop: | ||
- pandas | ||
- numpy | ||
- altair |
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,25 @@ | ||
Install nftables based firewall | ||
|
||
Set up /etc/ooni/nftables/ | ||
|
||
Rules for specific services are *not* configured by this role | ||
|
||
When creating rules to accept TCP traffic from any IPv4/6 address, | ||
files are named with the port number to detect collisions. | ||
|
||
Example (also see roles/nftables/tasks/main.yml): | ||
|
||
/etc/ooni/nftables/tcp/8080.nft | ||
|
||
``` | ||
add rule inet filter input tcp dport 8080 counter accept comment "MyService" | ||
``` | ||
|
||
|
||
Otherwise: | ||
|
||
/etc/ooni/nftables/tcp/5432_postgres_internal.nft | ||
|
||
``` | ||
add rule inet filter input ip saddr { 10.0.0.0/8, 192.168.0.0/16 } tcp dport 5432 counter accept comment "Internal PostgreSQL" | ||
``` |
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,5 @@ | ||
- name: Reload nftables | ||
tags: nftables | ||
ansible.builtin.systemd_service: | ||
name: nftables | ||
state: reloaded |
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,45 @@ | ||
--- | ||
- name: Install nftables | ||
ansible.builtin.apt: | ||
cache_valid_time: 86400 | ||
name: nftables | ||
tags: | ||
- nftables | ||
|
||
- name: create config dir | ||
ansible.builtin.file: | ||
path: /etc/ooni/nftables/tcp | ||
state: directory | ||
owner: root | ||
group: root | ||
mode: 0755 | ||
tags: | ||
- nftables | ||
|
||
- name: allow SSH | ||
ansible.builtin.blockinfile: | ||
path: /etc/ooni/nftables/tcp/22.nft | ||
create: yes | ||
block: | | ||
add rule inet filter input tcp dport 22 counter accept comment "Incoming SSH" | ||
tags: | ||
- nftables | ||
|
||
- name: Overwrite nftables.conf | ||
ansible.builtin.template: | ||
src: templates/nftables.conf | ||
dest: /etc/nftables.conf | ||
mode: 0755 | ||
owner: root | ||
notify: | ||
- Reload nftables | ||
tags: | ||
- nftables | ||
|
||
- name: enable nftables service | ||
ansible.builtin.systemd_service: | ||
name: nftables | ||
enabled: yes | ||
state: started | ||
tags: | ||
- nftables |
Oops, something went wrong.