Merge "Optimize reconfiguration for karbor"

This commit is contained in:
Jenkins 2017-02-15 07:26:08 +00:00 committed by Gerrit Code Review
commit b7e1d40030
9 changed files with 170 additions and 158 deletions

View File

@ -1,6 +1,36 @@
--- ---
project_name: "karbor" project_name: "karbor"
karbor_services:
karbor-api:
container_name: karbor_api
group: karbor-api
enabled: true
image: "{{ karbor_api_image_full }}"
volumes:
- "{{ node_config_directory }}/karbor-api/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
karbor-protection:
container_name: karbor_protection
group: karbor-protection
enabled: true
image: "{{ karbor_protection_image_full }}"
volumes:
- "{{ node_config_directory }}/karbor-protection/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
karbor-operationengine:
container_name: karbor_operationengine
group: karbor-operationengine
enabled: true
image: "{{ karbor_operationengine_image_full }}"
volumes:
- "{{ node_config_directory }}/karbor-operationengine/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
#################### ####################
# Database # Database
#################### ####################

View File

@ -0,0 +1,66 @@
---
- name: Restart karbor-api container
vars:
service_name: "karbor-api"
service: "{{ karbor_services[service_name] }}"
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_api_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
kolla_docker:
action: "recreate_or_restart_container"
common_options: "{{ docker_common_options }}"
name: "{{ service.container_name }}"
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
or karbor_conf.changed | bool
or openstack_infra_conf.changed | bool
or karbor_api_container.changed | bool
- name: Restart karbor-protection container
vars:
service_name: "karbor-protection"
service: "{{ karbor_services[service_name] }}"
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_protection_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
kolla_docker:
action: "recreate_or_restart_container"
common_options: "{{ docker_common_options }}"
name: "{{ service.container_name }}"
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
or karbor_conf.changed | bool
or openstack_infra_conf.changed | bool
or karbor_protection_container.changed | bool
- name: Restart karbor-operationengine container
vars:
service_name: "karbor-operationengine"
service: "{{ karbor_services[service_name] }}"
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
karbor_operationengine_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
kolla_docker:
action: "recreate_or_restart_container"
common_options: "{{ docker_common_options }}"
name: "{{ service.container_name }}"
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
or karbor_conf.changed | bool
or openstack_infra_conf.changed | bool
or karbor_operationengine_container.changed | bool

View File

@ -1,5 +1,7 @@
--- ---
- name: Running Karbor bootstrap container - name: Running Karbor bootstrap container
vars:
karbor_api: "{{ karbor_services['karbor-api'] }}"
kolla_docker: kolla_docker:
action: "start_container" action: "start_container"
common_options: "{{ docker_common_options }}" common_options: "{{ docker_common_options }}"
@ -7,14 +9,11 @@
environment: environment:
KOLLA_BOOTSTRAP: KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}" KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ karbor_api_image_full }}" image: "{{ karbor_api.image }}"
labels: labels:
BOOTSTRAP: BOOTSTRAP:
name: "bootstrap_karbor" name: "bootstrap_karbor"
restart_policy: "never" restart_policy: "never"
volumes: volumes: "{{ karbor_api.volumes }}"
- "{{ node_config_directory }}/karbor-api/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
run_once: True run_once: True
delegate_to: "{{ groups['karbor-api'][0] }}" delegate_to: "{{ groups[karbor_api.group][0] }}"

View File

@ -1,47 +1,81 @@
--- ---
- name: Ensuring config directories exist - name: Ensuring config directories exist
file: file:
path: "{{ node_config_directory }}/{{ item }}" path: "{{ node_config_directory }}/{{ item.key }}/providers.d"
path: "{{ node_config_directory }}/{{ item }}/providers.d"
state: "directory" state: "directory"
recurse: yes recurse: yes
with_items: when:
- "karbor-api" - inventory_hostname in groups[item.value.group]
- "karbor-protection" - item.value.enabled | bool
- "karbor-operationengine" with_dict: "{{ karbor_services }}"
- name: Copying over config.json files for services - name: Copying over config.json files for services
template: template:
src: "{{ item }}.json.j2" src: "{{ item.key }}.json.j2"
dest: "{{ node_config_directory }}/{{ item }}/config.json" dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
with_items: register: karbor_config_jsons
- "karbor-api" when:
- "karbor-protection" - inventory_hostname in groups[item.value.group]
- "karbor-operationengine" - item.value.enabled | bool
with_dict: "{{ karbor_services }}"
notify:
- Restart karbor-api container
- Restart karbor-protection container
- Restart karbor-operationengine container
- name: Copying over karbor.conf - name: Copying over karbor.conf
merge_configs: merge_configs:
vars: vars:
service_name: "{{ item }}" service_name: "{{ item.key }}"
sources: sources:
- "{{ role_path }}/templates/karbor.conf.j2" - "{{ role_path }}/templates/karbor.conf.j2"
- "{{ node_config_directory }}/config/global.conf" - "{{ node_config_directory }}/config/global.conf"
- "{{ node_config_directory }}/config/database.conf" - "{{ node_config_directory }}/config/database.conf"
- "{{ node_config_directory }}/config/messaging.conf" - "{{ node_config_directory }}/config/messaging.conf"
- "{{ node_config_directory }}/config/karbor.conf" - "{{ node_config_directory }}/config/karbor.conf"
- "{{ node_config_directory }}/config/karbor/{{ item }}.conf" - "{{ node_config_directory }}/config/karbor/{{ item.key }}.conf"
- "{{ node_config_directory }}/config/karbor/{{ inventory_hostname }}/karbor.conf" - "{{ node_config_directory }}/config/karbor/{{ inventory_hostname }}/karbor.conf"
dest: "{{ node_config_directory }}/{{ item }}/karbor.conf" dest: "{{ node_config_directory }}/{{ item.key }}/karbor.conf"
with_items: register: karbor_confs
- "karbor-api" when:
- "karbor-protection" - inventory_hostname in groups[item.value.group]
- "karbor-operationengine" - item.value.enabled | bool
with_dict: "{{ karbor_services }}"
notify:
- Restart karbor-api container
- Restart karbor-protection container
- Restart karbor-operationengine container
- name: Copying over openstack-infra.conf - name: Copying over openstack-infra.conf
vars:
service: "{{ item.key }}"
template: template:
src: "providers.d/openstack-infra.conf.j2" src: "providers.d/openstack-infra.conf.j2"
dest: "{{ node_config_directory }}/{{ item }}/providers.d/openstack-infra.conf" dest: "{{ node_config_directory }}/{{ item.key }}/providers.d/openstack-infra.conf"
with_items: register: openstack_infra_conf
- "karbor-api" when:
- "karbor-protection" - inventory_hostname in groups[item.value.group]
- "karbor-operationengine" - item.value.enabled | bool
with_dict: "{{ karbor_services }}"
notify:
- Restart karbor-api container
- Restart karbor-protection container
- Restart karbor-operationengine container
- name: Check karbor containers
kolla_docker:
action: "compare_container"
common_options: "{{ docker_common_options }}"
name: "{{ item.value.container_name }}"
image: "{{ item.value.image }}"
volumes: "{{ item.value.volumes }}"
register: check_karbor_containers
when:
- action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ karbor_services }}"
notify:
- Restart karbor-api container
- Restart karbor-protection container
- Restart karbor-operationengine container

View File

@ -10,7 +10,5 @@
- include: bootstrap.yml - include: bootstrap.yml
when: inventory_hostname in groups['karbor-api'] when: inventory_hostname in groups['karbor-api']
- include: start.yml - name: Flush handlers
when: inventory_hostname in groups['karbor-api'] or meta: flush_handlers
inventory_hostname in groups['karbor-protection'] or
inventory_hostname in groups['karbor-operationengine']

View File

@ -1,21 +1,10 @@
--- ---
- name: Pulling karbor-api image - name: Pulling karbor images
kolla_docker: kolla_docker:
action: "pull_image" action: "pull_image"
common_options: "{{ docker_common_options }}" common_options: "{{ docker_common_options }}"
image: "{{ karbor_api_image_full }}" image: "{{ item.value.image }}"
when: inventory_hostname in groups['karbor-api'] when:
- inventory_hostname in groups[item.value.group]
- name: Pulling karbor-protection image - item.value.enabled | bool
kolla_docker: with_dict: "{{ karbor_services }}"
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ karbor_protection_image_full }}"
when: inventory_hostname in groups['karbor-protection']
- name: Pulling karbor-operationengine image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ karbor_operationengine_image_full }}"
when: inventory_hostname in groups['karbor-operationengine']

View File

@ -1,71 +1,2 @@
--- ---
- name: Ensuring the containers up - include: deploy.yml
kolla_docker:
name: "{{ item.name }}"
action: "get_container_state"
register: container_state
failed_when: container_state.Running == false
when: inventory_hostname in groups[item.group]
with_items:
- { name: karbor_api, group: karbor-api }
- { name: karbor_protection, group: karbor-protection }
- { name: karbor_operationengine, group: karbor-operationengine }
- include: config.yml
- name: Check the configs
command: docker exec {{ item.name }} /usr/local/bin/kolla_set_configs --check
changed_when: false
failed_when: false
register: check_results
when: inventory_hostname in groups[item.group]
with_items:
- { name: karbor_api, group: karbor-api }
- { name: karbor_protection, group: karbor-protection }
- { name: karbor_operationengine, group: karbor-operationengine }
- name: Containers config strategy
kolla_docker:
name: "{{ item.name }}"
action: "get_container_env"
register: container_envs
when: inventory_hostname in groups[item.group]
with_items:
- { name: karbor_api, group: karbor-api }
- { name: karbor_protection, group: karbor-protection }
- { name: karbor_operationengine, group: karbor-operationengine }
- name: Remove the containers
kolla_docker:
name: "{{ item[0]['name'] }}"
action: "remove_container"
register: remove_containers
when:
- inventory_hostname in groups[item[0]['group']]
- config_strategy == "COPY_ONCE" or item[1]['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE'
- item[2]['rc'] == 1
with_together:
- [{ name: karbor_api, group: karbor-api },
{ name: karbor_protection, group: karbor-protection },
{ name: karbor_operationengine, group: karbor-operationengine }]
- "{{ container_envs.results }}"
- "{{ check_results.results }}"
- include: start.yml
when: remove_containers.changed
- name: Restart containers
kolla_docker:
name: "{{ item[0]['name'] }}"
action: "restart_container"
when:
- inventory_hostname in groups[item[0]['group']]
- config_strategy == 'COPY_ALWAYS'
- item[1]['KOLLA_CONFIG_STRATEGY'] != 'COPY_ONCE'
- item[2]['rc'] == 1
with_together:
- [{ name: karbor_api, group: karbor-api },
{ name: karbor_protection, group: karbor-protection },
{ name: karbor_operationengine, group: karbor-operationengine }]
- "{{ container_envs.results }}"
- "{{ check_results.results }}"

View File

@ -1,36 +0,0 @@
---
- name: Starting karbor-api container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ karbor_api_image_full }}"
name: "karbor_api"
volumes:
- "{{ node_config_directory }}/karbor-api/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: inventory_hostname in groups['karbor-api']
- name: Starting karbor-protection container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ karbor_protection_image_full }}"
name: "karbor_protection"
volumes:
- "{{ node_config_directory }}/karbor-protection/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: inventory_hostname in groups['karbor-protection']
- name: Starting karbor-operationengine container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ karbor_operationengine_image_full }}"
name: "karbor_operationengine"
volumes:
- "{{ node_config_directory }}/karbor-operationengine/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: inventory_hostname in groups['karbor-operationengine']

View File

@ -3,4 +3,5 @@
- include: bootstrap_service.yml - include: bootstrap_service.yml
- include: start.yml - name: Flush handlers
meta: flush_handlers