Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ansible/host_vars/fastpath.dev.ooni.io/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ clickhouse_url: "clickhouse://fastpath:{{ lookup('amazon.aws.aws_ssm', '/oonidev
bucket_name: "ooni-data-eu-fra-test"
# COLLECTOR ID SHOULD BE DIFFERENT BETWEEN EACH FASTPATH INSTANCE
collector_id: "3"
env: "dev"
env: "dev"
fastpath_image: "ooni/fastpath:20260903-7c51eb5d"
1 change: 1 addition & 0 deletions ansible/host_vars/fastpath.prod.ooni.io/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ bucket_name: "ooni-data-eu-fra"
# COLLECTOR ID SHOULD BE DIFFERENT BETWEEN EACH FASTPATH INSTANCE
collector_id: "1"
env: "prod"
fastpath_image: "ooni/fastpath:20260416-37f9e89c"
1 change: 1 addition & 0 deletions ansible/host_vars/fastpath2.prod.ooni.io/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ bucket_name: "ooni-data-eu-fra"
# COLLECTOR ID SHOULD BE DIFFERENT BETWEEN EACH FASTPATH INSTANCE
collector_id: "4"
env: "prod"
fastpath_image: "ooni/fastpath:20260416-37f9e89c"
1 change: 1 addition & 0 deletions ansible/host_vars/reuploaderfastpath.prod.ooni.io/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ bucket_name: "ooni-data-eu-fra"
# COLLECTOR ID SHOULD BE DIFFERENT BETWEEN EACH FASTPATH INSTANCE
collector_id: "5"
env: "prod"
fastpath_image: "ooni/fastpath:20260416-37f9e89c"
3 changes: 3 additions & 0 deletions ansible/roles/fastpath/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ tls_cert_dir: /var/lib/dehydrated/certs
fastpath_user: fastpath
fastpath_home: "/opt/{{ fastpath_user }}"

# Fastpath container image
fastpath_image: "ooni/fastpath:latest"

# Fastpath settings
clickhouse_url: "clickhouse://fastpath:{{ lookup('amazon.aws.aws_ssm', '/oonidevops/secrets/clickhouse_fastpath_password', profile='oonidevops_user_prod') }}@clickhouseproxy.dev.ooni.io/oonitest"
2 changes: 1 addition & 1 deletion ansible/roles/fastpath/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
- name: Ensure fastpath is running
community.docker.docker_container:
name: fastpath
image: ooni/fastpath:20260416-37f9e89c
image: "{{ fastpath_image }}"
state: started
restart_policy: always
user: "{{user_uid.stdout}}:{{user_gid.stdout}}"
Expand Down
Loading