diff options
author | Stepan Andrushko <stepanx.andrushko@intel.com> | 2018-10-18 21:16:09 +0300 |
---|---|---|
committer | Abhijit Sinha <abhijit.sinha@intel.com> | 2018-10-27 11:29:56 +0000 |
commit | ce809669d3051524508edf5a3d69e83dde8a9080 (patch) | |
tree | 4e3e82ebc2e37cfd9c5d84b0f4d77c0eb1988a49 /ansible/roles/configure_rabbitmq/tasks | |
parent | e0b7c0ad95d44eea4db4a3fb532f51688c97c8fc (diff) |
Trex KPI are not collected due to rabbitmq user
Changed the way rabbitmq-server user is created. Fix is needed to
collect KPIs from Trex.
JIRA: YARDSTICK-1479
Change-Id: I54369535fdb7af6af76de30f758227736f83db78
Signed-off-by: Stepan Andrushko <stepanx.andrushko@intel.com>
(cherry picked from commit d06e6da19db545dfcc6fdfdc706b9cccdb75c498)
Diffstat (limited to 'ansible/roles/configure_rabbitmq/tasks')
-rw-r--r-- | ansible/roles/configure_rabbitmq/tasks/main.yml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/ansible/roles/configure_rabbitmq/tasks/main.yml b/ansible/roles/configure_rabbitmq/tasks/main.yml index 3ad60c1ea..4ff4222dc 100644 --- a/ansible/roles/configure_rabbitmq/tasks/main.yml +++ b/ansible/roles/configure_rabbitmq/tasks/main.yml @@ -12,6 +12,16 @@ # See the License for the specific language governing permissions and # limitations under the License. --- +- name: Create rabbitmq configuration + template: + src: rabbitmq.config.j2 + dest: /etc/rabbitmq/rabbitmq.config + +- name: Define user definitions file + template: + src: user_definitions.json.j2 + dest: /etc/rabbitmq/definitions.json + - name: Restart rabbitmq service: name: rabbitmq-server @@ -20,11 +30,5 @@ - name: rabbitmqctl start_app shell: rabbitmqctl start_app -- name: Configure rabbitmq - rabbitmq_user: - user: yardstick - password: yardstick - configure_priv: .* - read_priv: .* - write_priv: .* - state: present +- name: Enable management plugin + shell: rabbitmq-plugins enable rabbitmq_management |