Add venv_tag local fact

In order to make it easier to detect the currently deployed
venv for a service, and therefore allow smarter decisions
for things like upgrading, we implement the venv tag as a
local fact.

The file used to store facts will be the same for all
OpenStack services, with each service using its own section.

Example:

"ansible_local": {
    "openstack_ansible": {
        "horizon": {
            "venv_tag": "14.2.1"
        }
    }
}

Change-Id: I45f5cae17ff86de782096e88a0b29eba4f3ddb69
This commit is contained in:
Jesse Pretorius 2017-05-22 15:41:47 +00:00
parent 9205417f27
commit 8ce498165e

View File

@ -174,3 +174,10 @@
- { path: "{{ horizon_lib_dir }}/openstack_dashboard", mode: "2755" }
- { path: "{{ horizon_lib_dir }}/openstack_dashboard/local", mode: "2755" }
- { path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled", mode: "2755" }
- name: Record the venv tag deployed
ini_file:
dest: "/etc/ansible/facts.d/openstack_ansible.fact"
section: horizon
option: venv_tag
value: "{{ horizon_venv_tag }}"