aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/ceilometer_controller/tasks/ceilometer_config.yml
blob: 7f5209c1d733c7236ab882e2abebf2b1da820542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
##############################################################################
# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: update apache2 configs
  template:
    src: wsgi-ceilometer.conf.j2
    dest: /etc/apache2/sites-available/ceilometer.conf
  notify: reload apache server

- name: enable ceilometer server
  file:
    src: /etc/apache2/sites-available/ceilometer.conf
    dest: /etc/apache2/sites-enabled/ceilometer.conf
    state: "link"
  when: ansible_os_family == 'Debian'
  notify: reload apache server

- name: assure listen port exist
  shell: echo "Listen {{ internal_ip }}:8777" >> /etc/apache2/ports.conf
  notify:
    - restart apache server

- name: copy glance & cinder configs
  template:
    src: "{{ item }}"
    dest: /opt/os_templates
  with_items:
    - cinder.conf.j2
    - glance-api.conf.j2
    - glance-registry.conf.j2

- name: update configs
  shell: crudini --merge {{ item.dest }} < /opt/os_templates/{{ item.src }}
  with_items:
    - src: cinder.conf.j2
      dest: /etc/cinder/cinder.conf
    - src: glance-api.conf.j2
      dest: /etc/glance/glance-api.conf
    - src: glance-registry.conf.j2
      dest: /etc/glance/glance-registry.conf
  notify: restart glance_cinder service

- name: delete configs
  file:
    path: /opt/os_templates/{{ item }}
    state: absent
  with_items:
    - cinder.conf.j2
    - glance-api.conf.j2
    - glance-registry.conf.j2

- name: change meter polling interval to 300s
  replace:
    dest: /etc/ceilometer/pipeline.yaml
    regexp: 'interval: .+'
    replace: 'interval: 300'
  notify: restart ceilometer service

- name: write services to monitor list
  lineinfile: dest=/opt/service create=yes line='{{ item }}'
  with_items: ceilometer_services

- meta: flush_handlers