c939504da6
If a file {{ node_custom_config }}/magnum/kubeconfig exists, it is copied to /var/lib/magnum/.kube/config in all Magnum Service Containers. At this location, the vexxhost/magnum-cluster-api will loo for the Kubeconfig configuration file to control the Cluster API Control Plane. If the vexxhost/magnum-cluster-api is installed in the Magnum container images, control of a cluster API control plane can then take place via the Magnum API. Depends-On: https://review.opendev.org/c/openstack/kolla/+/902101 Change-Id: I986c5192fe96b9c480a2d8fa87d719a50ce78186
111 lines
3.2 KiB
YAML
111 lines
3.2 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
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: "{{ magnum_services }}"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
stat:
|
|
path: "{{ item }}"
|
|
delegate_to: localhost
|
|
run_once: True
|
|
register: magnum_policy
|
|
with_first_found:
|
|
- files: "{{ supported_policy_format_list }}"
|
|
paths:
|
|
- "{{ node_custom_config }}/magnum/"
|
|
skip: true
|
|
|
|
- name: Set magnum policy file
|
|
set_fact:
|
|
magnum_policy_file: "{{ magnum_policy.results.0.stat.path | basename }}"
|
|
magnum_policy_file_path: "{{ magnum_policy.results.0.stat.path }}"
|
|
when:
|
|
- magnum_policy.results
|
|
|
|
- name: Check if kubeconfig file is supplied
|
|
stat:
|
|
path: "{{ node_custom_config }}/magnum/kubeconfig"
|
|
delegate_to: localhost
|
|
run_once: True
|
|
register: magnum_kubeconfig_file
|
|
|
|
- name: Copying over kubeconfig file
|
|
template:
|
|
src: "{{ node_custom_config }}/magnum/kubeconfig"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/kubeconfig"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
- magnum_kubeconfig_file.stat.exists
|
|
with_dict: "{{ magnum_services }}"
|
|
notify:
|
|
- Restart {{ item.key }} container
|
|
|
|
- name: Set magnum kubeconfig file's path
|
|
set_fact:
|
|
magnum_kubeconfig_file_path: "{{ magnum_kubeconfig_file.stat.path }}"
|
|
when:
|
|
- magnum_kubeconfig_file.stat.exists
|
|
|
|
- include_tasks: copy-certs.yml
|
|
when:
|
|
- kolla_copy_ca_into_containers | bool
|
|
|
|
- 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
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ magnum_services }}"
|
|
notify:
|
|
- Restart {{ item.key }} container
|
|
|
|
- name: Copying over magnum.conf
|
|
vars:
|
|
service_name: "{{ item.key }}"
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/templates/magnum.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/magnum.conf"
|
|
- "{{ node_custom_config }}/magnum/{{ item.key }}.conf"
|
|
- "{{ node_custom_config }}/magnum/{{ inventory_hostname }}/magnum.conf"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/magnum.conf"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ magnum_services }}"
|
|
notify:
|
|
- Restart {{ item.key }} container
|
|
|
|
- name: Copying over existing policy file
|
|
template:
|
|
src: "{{ magnum_policy_file_path }}"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/{{ magnum_policy_file }}"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- magnum_policy_file is defined
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ magnum_services }}"
|
|
notify:
|
|
- Restart {{ item.key }} container
|