Matt Thompson 352c577db2 Re-deploy the Cinder venv if it mismatches the repo
We currently have two issues with venvs:

- if you update your venv on the repo server, it is not possible for
  that updated venv to land on the service's container as the get_url
  task always skips if the file exists (even if the file is different)
- if you have an updated venv on the repo server and forcefully delete
  the cached venv tarball on the service's container, the new tarball
  will get unarchived over top of the existing venv

This commit does the following:

- gets the checksum of the /var/cache tarball and downloads checksum
  file from repo server
- updates "Attempt venv download" to only download the venv if the
  cache doesn't exist or if the local and remote checksums differ
- adds a "force: true" to "Attempt venv download" task so that the venv
  tarball will get re-downloaded when the when condition is true (this
  is necessary otherwise the download will get skipped since the
  destination already exists)
- adds a new task "Remove existing venv" so we can first remove the
  venv before we unarchive the potentially new venv from the repo
  server
- updates "Create cinder venv dir" and "Unarchive pre-built venv"
  tasks to only proceed if "cinder_get_venv | changed", which
  prevents these tasks from running when they the venv tarball hasn't
  changed
- adds multiple service restarts to
  os_cinder/tasks/cinder_install.yml so that cinder will restart
  correctly should the venv/packages update without any associated
  config changes

NOTE: The reason why we compare local and remote checksum is to avoid
      unnecessarily downloading the venv when the checksums are in fact
      the same.  On small deploys this is more or less a non-issue but
      if a deploy w/ thousands of compute nodes re-runs playbooks we
      want to limit the venv downloads when it's unnecessary.

Change-Id: I41624b27fa6b94b7174746d591d5c646dd118706
2016-01-28 09:03:12 +00:00
2015-05-08 13:22:42 -05:00

OpenStack cinder

tags

openstack, cinder, cloud, ansible

category

*nix

Role for deployment, setup and installation of cinder.

This role will install the following:
  • cinder-api
  • cinder-volume
  • cinder-scheduler
- name: Installation and setup of cinder
  hosts: cinder_all
  user: root
  roles:
    - { role: "os_cinder", tags: [ "os-cinder" ] }
  vars:
    cinder_galera_address: "{{ internal_lb_vip_address }}"
Description
Role os_cinder for OpenStack-Ansible
Readme 8.3 MiB
Languages
Jinja 52.6%
Python 34.1%
Shell 13.3%