kolla-ansible/ansible/roles/keystone/tasks/bootstrap_service.yml
Michal Jastrzebski 26524c7475 Playbook for keystone upgrade
New playbook for keystone release upgrade.

Co-Authored-By: SamYaple <sam@yaple.net>
Change-Id: I387abb30e5ead0033430848164d250fce739d2fd
Implements: blueprint upgrade-keystone
Partially-Implements: blueprint upgrade-kolla
2016-01-13 18:48:55 +00:00

16 lines
506 B
YAML

---
- name: Running Keystone bootstrap container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ keystone_image_full }}"
name: "bootstrap_keystone"
restart_policy: "never"
volumes: "{{ node_config_directory }}/keystone/:{{ container_config_directory }}/:ro"
run_once: True
delegate_to: "{{ groups['keystone'][0] }}"