diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release/userguide/installguide.oneclick.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/release/userguide/installguide.oneclick.rst b/docs/release/userguide/installguide.oneclick.rst index 07bc8c1e..6463c23a 100644 --- a/docs/release/userguide/installguide.oneclick.rst +++ b/docs/release/userguide/installguide.oneclick.rst @@ -92,6 +92,7 @@ To install Ansible 2.6.3 on Ubuntu: $ sudo apt-get install python $ sudo apt-get install python-pip $ sudo -H pip install 'ansible==2.6.3' + $ sudo apt-get install git The following steps have been verified with Ansible 2.6.3 on Centos 7.5. To install Ansible 2.6.3 on Centos: @@ -130,12 +131,18 @@ Edit inventory file and add hosts: $barometer_dir/docker/ansible/default.inv [collectd_hosts:vars] install_mcelog=true insert_ipmi_modules=true + #to use master or experimental container set the collectd flavor below + #possible values: stable|master|experimental + flavor=stable [influxdb_hosts] - localhost + #hostname or ip must be used. + #using localhost will cause issues with collectd network plugin. + #hostname [grafana_hosts] - localhost + #NOTE: As per current support, Grafana and Influxdb should be same host. + #hostname [prometheus_hosts] #localhost |