diff options
-rw-r--r-- | INFO | 3 | ||||
-rw-r--r-- | INFO.yaml | 12 | ||||
-rw-r--r-- | docker/ansible/default.inv | 9 | ||||
-rw-r--r-- | docs/release/userguide/docker.userguide.rst | 29 |
4 files changed, 34 insertions, 19 deletions
@@ -3,7 +3,7 @@ Project Creation Date: Project Category: Lifecycle State: Primary Contact: -Project Lead: aasmith@redhat.com +Project Lead: mrunge@redhat.com Jira Project Name: barometer Jira Project Prefix: barometer Mailing list tag: [] @@ -18,5 +18,6 @@ acmorton@att.com aasmith@redhat.com emma.l.foley@intel.com calin.gherghe@intel.com +mrunge@redhat.com Link to TSC approval of the project: @@ -4,11 +4,11 @@ project_creation_date: '' project_category: '' lifecycle_state: '' project_lead: &opnfv_barometer_ptl - name: 'Aaron Smith' - email: 'aasmith@redhat.com' - id: 'TsaLaGi' + name: 'Matthias Runge' + email: 'mrunge@redhat.com' + id: 'mrunge' company: 'redhat.com' - timezone: 'Unknown' + timezone: 'Europe/Berlin' primary_contact: *opnfv_barometer_ptl issue_tracking: type: 'jira' @@ -51,6 +51,10 @@ committers: email: 'emma.l.foley@intel.com' company: 'intel.com' id: 'elfoley' + - name: 'Aaron Smith' + email: 'aasmith@redhat.com' + company: 'redhat.com' + id: 'TsaLaGi' tsc: # yamllint disable rule:line-length approval: '' diff --git a/docker/ansible/default.inv b/docker/ansible/default.inv index a5a092dc..9319b9ea 100644 --- a/docker/ansible/default.inv +++ b/docker/ansible/default.inv @@ -1,3 +1,12 @@ +# NOTE: for defining hosts both hostnames and IP addresses forms can be used +# however it is advised to keep it consistent over the file, especially if +# the same host is used by multiple containers +# e.g. if some host will be described by IP address at first('127.0.0.1') +# and at some place the same host will be called using its hostname +# ('localhost') then ansible will treat them as different entities and +# synchronization problems during parallel dependencies installation +# may occur) + [collectd_hosts] localhost diff --git a/docs/release/userguide/docker.userguide.rst b/docs/release/userguide/docker.userguide.rst index 6f251641..c184abfa 100644 --- a/docs/release/userguide/docker.userguide.rst +++ b/docs/release/userguide/docker.userguide.rst @@ -259,7 +259,8 @@ The example is for localhost. .. code:: bash - $ sudo ssh-copy-id root@localhost + $ sudo -i + $ ssh-copy-id root@localhost Verify that key is added and password is not required to connect. @@ -959,31 +960,31 @@ VES Test Collector application can be used for displaying platform wide metrics that are collected by barometer-ves container. Setup instructions are located in: :ref:`Setup VES Test Collector` -Build and Run LocalAgent and Redis Docker Images +Build and Run DMA and Redis Docker Images ----------------------------------------------------- -Download LocalAgent docker images +Download DMA docker images ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -If you wish to use pre-built barometer project's LocalAgent images, you can pull the -images from https://hub.docker.com/r/opnfv/barometer-localagent/ +If you wish to use pre-built barometer project's DMA images, you can pull the +images from https://hub.docker.com/r/opnfv/barometer-dma/ .. note:: - If your preference is to build images locally please see sections `Build LocalAgent Docker Image`_ + If your preference is to build images locally please see sections `Build DMA Docker Image`_ .. code:: bash - $ docker pull opnfv/barometer-localagent + $ docker pull opnfv/barometer-dma .. note:: If you have pulled the pre-built images there is no requirement to complete steps outlined - in sections `Build LocalAgent Docker Image`_ and you can proceed directly to section - `Run LocalAgent Docker Image`_ + in sections `Build DMA Docker Image`_ and you can proceed directly to section + `Run DMA Docker Image`_ -Build LocalAgent docker image +Build DMA docker image ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Build LocalAgent docker image: +Build DMA docker image: .. code:: bash @@ -1012,7 +1013,7 @@ Run Redis docker image ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. note:: - Before running LocalAgent, Redis must be running. + Before running DMA, Redis must be running. Run Redis docker image: @@ -1026,11 +1027,11 @@ Check your docker image is running sudo docker ps -Run LocalAgent docker image +Run DMA docker image ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. note:: -Run LocalAgent docker image with default configuration +Run DMA docker image with default configuration .. code:: bash |