File tree 2 files changed +9
-0
lines changed
ansible-scylla-monitoring
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -89,3 +89,7 @@ prometheus_url: 'https://github.com/prometheus/prometheus/releases/download/v2.3
89
89
90
90
# Additional arguments to pass to the prometheus binary
91
91
# prometheus_args: "--web.enable-admin-api --storage.tsdb.retention.size=50G"
92
+
93
+ # Use this variable for setting any custom configuration allowed by dockerd (https://docs.docker.com/reference/cli/dockerd/#on-linux)
94
+ # The content of this variable will be coppied to /etc/docker/daemon.json
95
+ docker_daemon_custom_config : { "bip": "172.17.0.1/24" }
Original file line number Diff line number Diff line change 2
2
- name : Populate service facts
3
3
service_facts :
4
4
5
+ - copy :
6
+ content : " {{ docker_daemon_custom_config }}"
7
+ dest : " /etc/docker/daemon.json"
8
+ become : true
9
+
5
10
- name : restart the docker daemon again
6
11
service :
7
12
name : docker
You can’t perform that action at this time.
0 commit comments