openstack-ansible-os_gnocchi/tasks/gnocchi_post_install.yml

64 lines
2.3 KiB
YAML

---
# Copyright 2015, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Drop Gnocchi Config
config_template:
src: "gnocchi.conf.j2"
dest: "/etc/gnocchi/gnocchi.conf"
owner: "{{ gnocchi_system_user_name }}"
group: "{{ gnocchi_system_group_name }}"
mode: "0644"
config_overrides: "{{ gnocchi_conf_overrides }}"
config_type: "ini"
notify:
- Restart gnocchi services
- Restart web server
- name: Retrieve and config_template upstream files
config_template:
content: "{{ lookup('pipe', item.content) | string }}"
dest: "{{ item.dest }}"
config_overrides: "{{ item.config_overrides }}"
config_type: "{{ item.config_type }}"
with_items:
- name: "api-paste.ini"
dest: "/etc/gnocchi/api-paste.ini"
config_overrides: "{{ gnocchi_api_paste_ini_overrides }}"
config_type: "ini"
content: |
cat {{ gnocchi_api_paste_default_file_path }} 2>/dev/null || \
curl -s {{ gnocchi_git_config_lookup_location }}gnocchi/rest/api-paste.ini?h={{ gnocchi_git_install_branch }}
- name: "policy.json"
dest: "/etc/gnocchi/policy.json-{{ gnocchi_venv_tag }}"
config_overrides: "{{ gnocchi_policy_overrides }}"
config_type: "json"
content: |
cat {{ gnocchi_policy_default_file_path }} 2>/dev/null || \
curl -s {{ gnocchi_git_config_lookup_location }}gnocchi/rest/policy.json?h={{ gnocchi_git_install_branch }}
notify:
- Restart gnocchi services
- Restart web server
- name: Drop Gnocchi WSGI Configs
template:
src: gnocchi-wsgi.py.j2
dest: /var/www/cgi-bin/gnocchi/gnocchi-api
owner: "{{ gnocchi_system_user_name }}"
group: "{{ gnocchi_system_group_name }}"
mode: "0755"
when: gnocchi_use_mod_wsgi | bool
notify:
- Restart web server