Optimize reconfigure action for cloudkitty
Change-Id: I7389a437d54db9c6dfb4706b2fe541a4c4702de5 Partially-implements: blueprint better-reconfigure
This commit is contained in:
parent
c108c5e604
commit
2363a8e469
@ -1,6 +1,27 @@
|
|||||||
---
|
---
|
||||||
project_name: "cloudkitty"
|
project_name: "cloudkitty"
|
||||||
|
|
||||||
|
cloudkitty_services:
|
||||||
|
cloudkitty-api:
|
||||||
|
container_name: "cloudkitty_api"
|
||||||
|
group: "cloudkitty-api"
|
||||||
|
image: "{{ cloudkitty_api_image_full }}"
|
||||||
|
enabled: True
|
||||||
|
volumes:
|
||||||
|
- "{{ node_config_directory }}/cloudkitty-api/:{{ container_config_directory }}/:ro"
|
||||||
|
- "/etc/localtime:/etc/localtime:ro"
|
||||||
|
- "kolla_logs:/var/log/kolla/"
|
||||||
|
cloudkitty-processor:
|
||||||
|
container_name: "cloudkitty_processor"
|
||||||
|
group: "cloudkitty-processor"
|
||||||
|
image: "{{ cloudkitty_processor_image_full }}"
|
||||||
|
enabled: True
|
||||||
|
volumes:
|
||||||
|
- "{{ node_config_directory }}/cloudkitty-processor/:{{ container_config_directory }}/:ro"
|
||||||
|
- "/etc/localtime:/etc/localtime:ro"
|
||||||
|
- "kolla_logs:/var/log/kolla/"
|
||||||
|
|
||||||
|
|
||||||
####################
|
####################
|
||||||
# Database
|
# Database
|
||||||
####################
|
####################
|
||||||
|
46
ansible/roles/cloudkitty/handlers/main.yml
Normal file
46
ansible/roles/cloudkitty/handlers/main.yml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
- name: Restart cloudkitty-api container
|
||||||
|
vars:
|
||||||
|
service_name: "cloudkitty-api"
|
||||||
|
service: "{{ cloudkitty_services[service_name] }}"
|
||||||
|
config_json: "{{ cloudkitty_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
cloudkitty_conf: "{{ cloudkitty_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
policy_json: "{{ cloudkitty_policy_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
cloudkitty_api_container: "{{ check_cloudkitty_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 cloudkitty_conf.changed | bool
|
||||||
|
or policy_json.changed | bool
|
||||||
|
or cloudkitty_api_container.changed | bool
|
||||||
|
|
||||||
|
- name: Restart cloudkitty-processor container
|
||||||
|
vars:
|
||||||
|
service_name: "cloudkitty-processor"
|
||||||
|
service: "{{ cloudkitty_services[service_name] }}"
|
||||||
|
config_json: "{{ cloudkitty_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
cloudkitty_conf: "{{ cloudkitty_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
policy_json: "{{ cloudkitty_policy_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
||||||
|
cloudkitty_processor_container: "{{ check_cloudkitty_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 cloudkitty_conf.changed | bool
|
||||||
|
or policy_json.changed | bool
|
||||||
|
or cloudkitty_processor_container.changed | bool
|
@ -1,5 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Running Cloudkitty bootstrap container
|
- name: Running Cloudkitty bootstrap container
|
||||||
|
vars:
|
||||||
|
cloudkitty_api: "{{ cloudkitty_services['cloudkitty-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: "{{ cloudkitty_api_image_full }}"
|
image: "{{ cloudkitty_api.image }}"
|
||||||
labels:
|
labels:
|
||||||
BOOTSTRAP:
|
BOOTSTRAP:
|
||||||
name: "bootstrap_cloudkitty"
|
name: "bootstrap_cloudkitty"
|
||||||
restart_policy: "never"
|
restart_policy: "never"
|
||||||
volumes:
|
volumes: "{{ cloudkitty_api.volumes }}"
|
||||||
- "{{ node_config_directory }}/cloudkitty-api/:{{ container_config_directory }}/:ro"
|
|
||||||
- "/etc/localtime:/etc/localtime:ro"
|
|
||||||
- "kolla_logs:/var/log/kolla/"
|
|
||||||
run_once: True
|
run_once: True
|
||||||
delegate_to: "{{ groups['cloudkitty-api'][0] }}"
|
delegate_to: "{{ groups[cloudkitty_api.group][0] }}"
|
||||||
|
@ -1,37 +1,48 @@
|
|||||||
---
|
---
|
||||||
- name: Ensuring config directories exist
|
- name: Ensuring config directories exist
|
||||||
file:
|
file:
|
||||||
path: "{{ node_config_directory }}/{{ item }}"
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
||||||
state: "directory"
|
state: "directory"
|
||||||
recurse: yes
|
recurse: yes
|
||||||
with_items:
|
when:
|
||||||
- "cloudkitty-api"
|
- inventory_hostname in groups[item.value.group]
|
||||||
- "cloudkitty-processor"
|
- item.value.enabled | bool
|
||||||
|
with_dict: "{{ cloudkitty_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: cloudkitty_config_jsons
|
||||||
- "cloudkitty-api"
|
when:
|
||||||
- "cloudkitty-processor"
|
- item.value.enabled | bool
|
||||||
|
- inventory_hostname in groups[item.value.group]
|
||||||
|
with_dict: "{{ cloudkitty_services }}"
|
||||||
|
notify:
|
||||||
|
- Restart cloudkitty-api container
|
||||||
|
- Restart cloudkitty-processor container
|
||||||
|
|
||||||
- name: Copying over cloudkitty.conf
|
- name: Copying over cloudkitty.conf
|
||||||
merge_configs:
|
merge_configs:
|
||||||
vars:
|
vars:
|
||||||
service_name: "{{ item }}"
|
service_name: "{{ item.key }}"
|
||||||
sources:
|
sources:
|
||||||
- "{{ role_path }}/templates/cloudkitty.conf.j2"
|
- "{{ role_path }}/templates/cloudkitty.conf.j2"
|
||||||
- "{{ node_custom_config }}/global.conf"
|
- "{{ node_custom_config }}/global.conf"
|
||||||
- "{{ node_custom_config }}/database.conf"
|
- "{{ node_custom_config }}/database.conf"
|
||||||
- "{{ node_custom_config }}/messaging.conf"
|
- "{{ node_custom_config }}/messaging.conf"
|
||||||
- "{{ node_custom_config }}/cloudkitty.conf"
|
- "{{ node_custom_config }}/cloudkitty.conf"
|
||||||
- "{{ node_custom_config }}/cloudkitty/{{ item }}.conf"
|
- "{{ node_custom_config }}/cloudkitty/{{ item.key }}.conf"
|
||||||
- "{{ node_custom_config }}/cloudkitty/{{ inventory_hostname }}/cloudkitty.conf"
|
- "{{ node_custom_config }}/cloudkitty/{{ inventory_hostname }}/cloudkitty.conf"
|
||||||
dest: "{{ node_config_directory }}/{{ item }}/cloudkitty.conf"
|
dest: "{{ node_config_directory }}/{{ item.key }}/cloudkitty.conf"
|
||||||
with_items:
|
register: cloudkitty_confs
|
||||||
- "cloudkitty-api"
|
when:
|
||||||
- "cloudkitty-processor"
|
- inventory_hostname in groups[item.value.group]
|
||||||
|
- item.value.enabled | bool
|
||||||
|
with_dict: "{{ cloudkitty_services }}"
|
||||||
|
notify:
|
||||||
|
- Restart cloudkitty-api container
|
||||||
|
- Restart cloudkitty-processor container
|
||||||
|
|
||||||
- name: Check if policies shall be overwritten
|
- name: Check if policies shall be overwritten
|
||||||
local_action: stat path="{{ node_custom_config }}/cloudkitty/policy.json"
|
local_action: stat path="{{ node_custom_config }}/cloudkitty/policy.json"
|
||||||
@ -40,9 +51,30 @@
|
|||||||
- name: Copying over existing policy.json
|
- name: Copying over existing policy.json
|
||||||
template:
|
template:
|
||||||
src: "{{ node_custom_config }}/cloudkitty/policy.json"
|
src: "{{ node_custom_config }}/cloudkitty/policy.json"
|
||||||
dest: "{{ node_config_directory }}/{{ item }}/policy.json"
|
dest: "{{ node_config_directory }}/{{ item.key }}/policy.json"
|
||||||
with_items:
|
register: cloudkitty_policy_jsons
|
||||||
- "cloudkitty-api"
|
|
||||||
- "cloudkitty-processor"
|
|
||||||
when:
|
when:
|
||||||
cloudkitty_policy.stat.exists
|
- cloudkitty_policy.stat.exists
|
||||||
|
- inventory_hostname in groups[item.value.group]
|
||||||
|
- item.value.enabled | bool
|
||||||
|
with_dict: "{{ cloudkitty_services }}"
|
||||||
|
notify:
|
||||||
|
- Restart cloudkitty-api container
|
||||||
|
- Restart cloudkitty-processor container
|
||||||
|
|
||||||
|
- name: Check cloudkitty 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_cloudkitty_containers
|
||||||
|
when:
|
||||||
|
- action != "config"
|
||||||
|
- inventory_hostname in groups[item.value.group]
|
||||||
|
- item.value.enabled | bool
|
||||||
|
with_dict: "{{ cloudkitty_services }}"
|
||||||
|
notify:
|
||||||
|
- Restart cloudkitty-api container
|
||||||
|
- Restart cloudkitty-processor container
|
||||||
|
@ -9,6 +9,5 @@
|
|||||||
- include: bootstrap.yml
|
- include: bootstrap.yml
|
||||||
when: inventory_hostname in groups['cloudkitty-api']
|
when: inventory_hostname in groups['cloudkitty-api']
|
||||||
|
|
||||||
- include: start.yml
|
- name: Flush handlers
|
||||||
when: inventory_hostname in groups['cloudkitty-api'] or
|
meta: flush_handlers
|
||||||
inventory_hostname in groups['cloudkitty-processor']
|
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
---
|
---
|
||||||
- name: Pulling cloudkitty-api image
|
- name: Pulling cloudkitty images
|
||||||
kolla_docker:
|
kolla_docker:
|
||||||
action: "pull_image"
|
action: "pull_image"
|
||||||
common_options: "{{ docker_common_options }}"
|
common_options: "{{ docker_common_options }}"
|
||||||
image: "{{ cloudkitty_api_image_full }}"
|
image: "{{ item.value.image }}"
|
||||||
when: inventory_hostname in groups['cloudkitty-api']
|
when:
|
||||||
|
- inventory_hostname in groups[item.value.group]
|
||||||
- name: Pulling cloudkitty-processor image
|
- item.value.enabled | bool
|
||||||
kolla_docker:
|
with_dict: "{{ cloudkitty_services }}"
|
||||||
action: "pull_image"
|
|
||||||
common_options: "{{ docker_common_options }}"
|
|
||||||
image: "{{ cloudkitty_processor_image_full }}"
|
|
||||||
when: inventory_hostname in groups['cloudkitty-processor']
|
|
||||||
|
@ -1,66 +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: cloudkitty_api, group: cloudkitty-api }
|
|
||||||
- { name: cloudkitty_processor, group: cloudkitty-processor }
|
|
||||||
|
|
||||||
- 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: cloudkitty_api, group: cloudkitty-api }
|
|
||||||
- { name: cloudkitty_processor, group: cloudkitty-processor }
|
|
||||||
|
|
||||||
- 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: cloudkitty_api, group: cloudkitty-api }
|
|
||||||
- { name: cloudkitty_processor, group: cloudkitty-processor }
|
|
||||||
|
|
||||||
- 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: cloudkitty_api, group: cloudkitty-api },
|
|
||||||
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
|
||||||
- "{{ 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:
|
|
||||||
- config_strategy == 'COPY_ALWAYS'
|
|
||||||
- item[1]['KOLLA_CONFIG_STRATEGY'] != 'COPY_ONCE'
|
|
||||||
- item[2]['rc'] == 1
|
|
||||||
- inventory_hostname in groups[item[0]['group']]
|
|
||||||
with_together:
|
|
||||||
- [{ name: cloudkitty_api, group: cloudkitty-api },
|
|
||||||
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
|
||||||
- "{{ container_envs.results }}"
|
|
||||||
- "{{ check_results.results }}"
|
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
---
|
|
||||||
- name: Starting cloudkitty-processor container
|
|
||||||
kolla_docker:
|
|
||||||
action: "start_container"
|
|
||||||
common_options: "{{ docker_common_options }}"
|
|
||||||
image: "{{ cloudkitty_processor_image_full }}"
|
|
||||||
name: "cloudkitty_processor"
|
|
||||||
volumes:
|
|
||||||
- "{{ node_config_directory }}/cloudkitty-processor/:{{ container_config_directory }}/:ro"
|
|
||||||
- "/etc/localtime:/etc/localtime:ro"
|
|
||||||
- "kolla_logs:/var/log/kolla/"
|
|
||||||
when: inventory_hostname in groups['cloudkitty-processor']
|
|
||||||
|
|
||||||
- name: Starting cloudkitty-api container
|
|
||||||
kolla_docker:
|
|
||||||
action: "start_container"
|
|
||||||
common_options: "{{ docker_common_options }}"
|
|
||||||
image: "{{ cloudkitty_api_image_full }}"
|
|
||||||
name: "cloudkitty_api"
|
|
||||||
volumes:
|
|
||||||
- "{{ node_config_directory }}/cloudkitty-api/:{{ container_config_directory }}/:ro"
|
|
||||||
- "/etc/localtime:/etc/localtime:ro"
|
|
||||||
- "kolla_logs:/var/log/kolla/"
|
|
||||||
when: inventory_hostname in groups['cloudkitty-api']
|
|
@ -3,4 +3,5 @@
|
|||||||
|
|
||||||
- include: bootstrap_service.yml
|
- include: bootstrap_service.yml
|
||||||
|
|
||||||
- include: start.yml
|
- name: Flush handlers
|
||||||
|
meta: flush_handlers
|
||||||
|
Loading…
Reference in New Issue
Block a user