We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c03c6d commit c940f6eCopy full SHA for c940f6e
ansible/deploy-jumphost.yml
@@ -0,0 +1,15 @@
1
+---
2
+- name: Deploy jumphost
3
+ hosts:
4
+ - jumphost.dev.ooni.io
5
+ become: true
6
+ roles:
7
+ - role: bootstrap
8
+ - role: nginx
9
+ - role: prometheus_node_exporter
10
+ vars:
11
+ node_exporter_port: 9100
12
+ node_exporter_host: "0.0.0.0"
13
+ prometheus_nginx_proxy_config:
14
+ - location: /metrics/node_exporter
15
+ proxy_pass: http://127.0.0.1:9100/metrics
0 commit comments