summaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/ceilometer_controller/tasks/ceilometer_config.yml
blob: b2d58d4bab6f720388acf782e252edb93e2b33c0 (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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Key
##############################################################################
# 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: assure listen port exist
  lineinfile:
    dest: '{{ apache_config_dir }}/ports.conf'
    regexp: "^Listen {{ internal_ip }}:8777"
    line: "Listen {{ internal_ip }}:8777"
  notify: restart apache server

- name: update apache2 configs
  template:
    src: wsgi-ceilometer.conf.j2
    dest: '{{ apache_config_dir }}/sites-available/ceilometer.conf'
  when: ansible_os_family == 'Debian'
  notify: reload apache server

- name: update apache2 configs
  template:
    src: wsgi-ceilometer.conf.j2
    dest: '{{ apache_config_dir }}/ceilometer.conf'
  when: ansible_os_family == 'RedHat'
  notify: reload apache server

- name: enable ceilometer server
  file:
    src: "{{ apache_config_dir }}/sites-available/ceilometer.conf"
    dest: "{{ apache_config_dir }}/sites-enabled/ceilometer.conf"
    state: "link"
  when: ansible_os_family == 'Debian'
  notify: reload 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