Playbook for upgrade mistral

Change-Id: Iaec726be146fd93bf1437fcd859081858b1d541d
Partially-Implements: blueprint upgrade-kolla
Implements: blueprint upgrade-mistral
This commit is contained in:
Allen Gao 2016-02-02 20:49:28 +08:00
parent 1057dcd50a
commit 46ba4548cf
3 changed files with 24 additions and 16 deletions

View File

@ -36,20 +36,5 @@
run_once: True
delegate_to: "{{ groups['mistral-api'][0] }}"
- name: Running Mistral bootstrap container
kolla_docker:
action: "start_container"
common_options: "{{docker_common_options}}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ mistral_api_image_full }}"
labels:
BOOTSTRAP:
name: "bootstrap_mistral"
restart_policy: "never"
volumes: "{{ node_config_directory }}/mistral-api/:{{ container_config_directory }}/:ro"
run_once: True
delegate_to: "{{ groups['mistral-api'][0] }}"
- include: bootstrap_service.yml
when: database_created

View File

@ -0,0 +1,17 @@
---
- name: Running Mistral bootstrap container
kolla_docker:
action: "start_container"
common_options: "{{docker_common_options}}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ mistral_api_image_full }}"
labels:
BOOTSTRAP:
name: "bootstrap_mistral"
restart_policy: "never"
volumes: "{{ node_config_directory }}/mistral-api/:{{ container_config_directory }}/:ro"
run_once: True
delegate_to: "{{ groups['mistral-api'][0] }}"

View File

@ -1 +1,7 @@
---
- include: config.yml
- include: bootstrap_service.yml
- include: start.yml
serial: "30%"