- name: restart aodh services
service: name={{ item }} state=restarted enabled=yes
with_items: "{{ services | union(services_noarch) }}"
+
+- name: aodh reload apache
+ service: name={{ item }} state=reloaded
+ with_items: "{{ http_service_name }}"
+
+- name: aodh restart apache
+ service: name={{ item }} state=restarted enabled=yes
+ with_items: "{{ http_service_name }}"
- restart aodh services
- name: write services to monitor list
- lineinfile: dest=/opt/service create=yes line='{{ item }}'
+ lineinfile: dest=/opt/service create=yes line={{ item }}
with_items: "{{ services | union(services_noarch) }}"
- name: remove default sqlite db
shell: rm /var/lib/aodh/aodh.sqlite || touch aodh.sqllite.db.removed
+
+- name: disable aodh-api service
+ service: name={{ item }} state=stopped enabled=no
+ with_items: "{{ api_service }}"
+
+- name: add listen port
+ lineinfile:
+ dest: '{{ apache_config_dir }}/ports.conf'
+ regexp: "^Listen {{ internal_ip }}:8042"
+ line: "Listen {{ internal_ip }}:8042"
+ notify: aodh restart apache
+
+- name: create WSGIScriptAlias Path
+ file:
+ path: /var/www/cgi-bin/aodh
+ state: directory
+ mode: 0755
+
+- name: copy WSGIScriptAlias file
+ shell: |
+ cp {{WSGIScriptAlias_file}} /var/www/cgi-bin/aodh/app;
+
+- name: update apache2 configs
+ template:
+ src: wsgi-aodh.conf.j2
+ dest: '{{ apache_config_dir }}/sites-available/aodh.conf'
+ when: ansible_os_family == 'Debian'
+ notify: aodh reload apache
+
+- name: enable aodh server
+ file:
+ src: "{{ apache_config_dir }}/sites-available/aodh.conf"
+ dest: "{{ apache_config_dir }}/sites-enabled/aodh.conf"
+ state: "link"
+ when: ansible_os_family == 'Debian'
+ notify: aodh reload apache
+
+- name: update apache2 configs
+ template:
+ src: wsgi-aodh.conf.j2
+ dest: '{{ apache_config_dir }}/aodh.conf'
+ when: ansible_os_family == 'RedHat'
+ notify: aodh reload apache
--- /dev/null
+{% set work_threads = (ansible_processor_vcpus + 1) // 2 %}
+{% if work_threads > 10 %}
+{% set work_threads = 10 %}
+{% endif %}
+
+<VirtualHost {{ internal_ip }}:8042>
+ WSGIDaemonProcess aodh-api processes=4 threads={{ work_threads }} user=aodh group=aodh display-name=%{GROUP}
+ WSGIProcessGroup aodh-api
+ WSGIScriptAlias / /var/www/cgi-bin/aodh/app
+ WSGIApplicationGroup %{GLOBAL}
+ <IfVersion >= 2.4>
+ ErrorLogFormat "%{cu}t %M"
+ </IfVersion>
+ ErrorLog /var/log/{{ http_service_name }}/aodh.log
+ CustomLog /var/log/{{ http_service_name }}/aodh_access.log combined
+
+ <Directory /usr/lib/python2.7/dist-packages/aodh/api/>
+ <IfVersion >= 2.4>
+ Require all granted
+ </IfVersion>
+ <IfVersion < 2.4>
+ Order allow,deny
+ Allow from all
+ </IfVersion>
+ </Directory>
+</VirtualHost>
+
+WSGISocketPrefix /var/run/{{ http_service_name }}
- python-aodhclient
services:
- - openstack-aodh-api
- openstack-aodh-notifier
- openstack-aodh-evaluator
- openstack-aodh-listener
+
+api_service: openstack-aodh-api
+
+apache_config_dir: /etc/httpd/conf.d
+http_service_name: httpd
+WSGIScriptAlias_file: /usr/lib/python2.7/site-packages/aodh/api/app.wsgi