Skip to content
Snippets Groups Projects
bootstrap_service.yml 723 B
Newer Older
- name: Running Nova cell bootstrap container
  vars:
    nova_conductor: "{{ nova_cell_services['nova-conductor'] }}"
  kolla_docker:
    action: "start_container"
    common_options: "{{ docker_common_options }}"
    detach: False
    environment:
      KOLLA_UPGRADE:
      KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
    image: "{{ nova_conductor.image }}"
    name: "nova_cell_bootstrap"
    restart_policy: no
    volumes: "{{ nova_cell_bootstrap_default_volumes + nova_cell_bootstrap_extra_volumes }}"
  register: bootstrap_result
  changed_when: bootstrap_result.stdout | default("") | length > 0
  when: inventory_hostname == groups[nova_cell_conductor_group][0]