14bf524756
This commit is to apply resource-constraints to a few more OpenStack services. Commit to apply constraints to the last set of services will be made in the upcoming commit. Depends-on: Icafa54baca24d2de64238222a5677b9d8b90e2aa Change-Id: I39004f54281f97d53dfa4b1dbcf248650ad6f186
90 lines
2.7 KiB
YAML
90 lines
2.7 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}/providers.d"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ karbor_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
mode: "0660"
|
|
become: true
|
|
register: karbor_config_jsons
|
|
when:
|
|
- 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
|
|
|
|
- name: Copying over karbor.conf
|
|
vars:
|
|
service_name: "{{ item.key }}"
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/templates/karbor.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/karbor.conf"
|
|
- "{{ node_custom_config }}/karbor/{{ item.key }}.conf"
|
|
- "{{ node_custom_config }}/karbor/{{ inventory_hostname }}/karbor.conf"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/karbor.conf"
|
|
mode: "0660"
|
|
become: true
|
|
register: karbor_confs
|
|
when:
|
|
- 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
|
|
|
|
- name: Copying over openstack-infra.conf
|
|
vars:
|
|
service_name: 'karbor-protection'
|
|
service: "{{ karbor_services[service_name] }}"
|
|
template:
|
|
src: "providers.d/openstack-infra.conf.j2"
|
|
dest: "{{ node_config_directory }}/{{ service_name }}/providers.d/openstack-infra.conf"
|
|
mode: "0660"
|
|
become: true
|
|
register: openstack_infra_conf
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
notify:
|
|
- Restart karbor-protection container
|
|
|
|
- name: Check karbor containers
|
|
become: true
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
volumes: "{{ item.value.volumes }}"
|
|
mode: "0660"
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
register: check_karbor_containers
|
|
when:
|
|
- kolla_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
|