From ba38eeb757d15365186a7149afc096410cb3744c Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Mon, 22 May 2017 14:42:57 +0000 Subject: [PATCH] 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": { "glance": { "venv_tag": "14.2.1" } } } Change-Id: I006f57b94514ec22fdaf8c3170d6cb3e8735be1f --- tasks/glance_install.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tasks/glance_install.yml b/tasks/glance_install.yml index e82062fb..0aa477aa 100644 --- a/tasks/glance_install.yml +++ b/tasks/glance_install.yml @@ -113,3 +113,10 @@ command: > virtualenv-tools --update-path=auto --reinitialize {{ glance_bin | dirname }} when: glance_get_venv | changed + +- name: Record the venv tag deployed + ini_file: + dest: "/etc/ansible/facts.d/openstack_ansible.fact" + section: glance + option: venv_tag + value: "{{ glance_venv_tag }}"