Execution
Date
14 Dec 2025 10:21:40 +0000
Duration
00:43:55.98
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.13.5
Summary
13
Hosts
2438
Tasks
2413
Results
107
Plays
511
Files
0
Records
File: /etc/ansible/ansible_collections/openstack/osa/roles/lxc_container_setup/tasks/main.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | --- # Copyright 2016, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Usage: # This common task will update lxc containers to use the lxc-openstack # app-armor profile by default however this profile can be changed as needed. # This will also load in a list of bind mounts for a given container. To load # in a list of bind mounts the variable, "list_of_bind_mounts" must be used # containing at least one dictionary with the keys "bind_dir_path", # "relative_bind_dir_path", and "mount_path". # * bind_dir_path = Container path used in a bind mount # * mount_path = Local path on the physical host used for a bind mount # If extra container configurations are desirable set the # "extra_container_config" list to strings containing the options needed. - name: Set default bind mounts (bind var/log) ansible.builtin.set_fact: lxc_default_bind_mounts: '{{ lxc_default_bind_mounts | default([{"bind_dir_path": "/var/log", "mount_path": "/openstack/log/" ~ inventory_hostname}]) }}' when: - default_bind_mount_logs | bool tags: - common-lxc - name: Ensure mount directories exists ansible.builtin.file: path: "{{ item['mount_path'] }}" state: "directory" with_items: - "{{ lxc_default_bind_mounts | default([]) }}" - "{{ list_of_bind_mounts | default([]) }}" when: - item.create | default('dir') == 'dir' delegate_to: "{{ physical_host }}" tags: - common-lxc - name: Add bind mount configuration to container ansible.builtin.lineinfile: dest: "/var/lib/lxc/{{ inventory_hostname }}/config" line: "lxc.mount.entry = {{ item['mount_path'] }} {{ item['bind_dir_path'].lstrip('/') }} none bind,create={{ item.create | default('dir') }} 0 0" insertbefore: "^lxc.mount.entry = .*\\s{{ item['bind_dir_path'].lstrip('/') | regex_replace('/', '\/') }}.*" backup: "true" with_items: - "{{ lxc_default_bind_mounts | default([]) }}" - "{{ list_of_bind_mounts | default([]) }}" delegate_to: "{{ physical_host }}" register: _mc tags: - common-lxc - name: Extra lxc config ansible.builtin.lineinfile: path: "/var/lib/lxc/{{ inventory_hostname }}/config" regexp: "^{{ item.split('=')[0] }} =" line: "{{ item.split('=')[0] }} = {{ item.split('=', 1)[1] }}" backup: "true" with_items: "{{ extra_container_config | default([]) }}" delegate_to: "{{ physical_host }}" register: _ec tags: - common-lxc - name: Extra lxc config no restart ansible.builtin.lineinfile: path: "/var/lib/lxc/{{ inventory_hostname }}/config" regexp: "^{{ item.split('=')[0] }} =" line: "{{ item.split('=')[0] }} = {{ item.split('=', 1)[1] }}" backup: "true" with_items: "{{ extra_container_config_no_restart | default(['lxc.start.order=100']) }}" delegate_to: "{{ physical_host }}" tags: - common-lxc - name: Check container state ansible.builtin.command: "lxc-info -n {{ inventory_hostname }} --state" changed_when: false delegate_to: "{{ physical_host }}" register: _lxc_container_state until: _lxc_container_state is success retries: 3 delay: 5 when: - (_mc is defined and _mc is changed) or (_ec is defined and _ec is changed) # Due to https://github.com/ansible/ansible-modules-extras/issues/2691 # this uses the LXC CLI tools to ensure that we get logging. # TODO(odyssey4me): revisit this once the bug is fixed and released # NOTE(cloudnull): The `lxc-stop` command will have an RC of 2 if the command # fails due to a container already being in a stopped state. - name: Lxc container restart ansible.builtin.command: > lxc-stop --name {{ inventory_hostname }} --logfile {{ lxc_container_log_path }}/lxc-{{ inventory_hostname }}.log --logpriority {{ (debug | bool) | ternary('DEBUG', 'INFO') }} delegate_to: "{{ physical_host }}" register: container_stop until: container_stop is success retries: 3 failed_when: - container_stop.rc not in [0, 2] when: - lxc_container_allow_restarts | default(True) | bool - (_mc is defined and _mc is changed) or (_ec is defined and _ec is changed) - _lxc_container_state.stdout.find('RUNNING') != -1 tags: - common-lxc # Due to https://github.com/ansible/ansible-modules-extras/issues/2691 # this uses the LXC CLI tools to ensure that we get logging. # TODO(odyssey4me): revisit this once the bug is fixed and released - name: Start Container ansible.builtin.command: > lxc-start --daemon --name {{ inventory_hostname }} --logfile {{ lxc_container_log_path }}/lxc-{{ inventory_hostname }}.log --logpriority {{ (debug | bool) | ternary('DEBUG', 'INFO') }} delegate_to: "{{ physical_host }}" register: container_start until: container_start is success retries: 3 when: - (_mc is defined and _mc is changed) or (_ec is defined and _ec is changed) tags: - common-lxc - name: Wait for container tmpfiles-setup finish ansible.builtin.raw: systemctl list-units systemd-tmpfiles-setup.service --no-legend | grep 'exited' >/dev/null register: systemd_tmpfiles until: systemd_tmpfiles.rc == 0 retries: 20 delay: 2 changed_when: false - name: Wait for container connectivity ansible.builtin.wait_for_connection: connect_timeout: "{{ lxc_container_wait_params.connect_timeout | default(omit) }}" delay: "{{ lxc_container_wait_params.delay | default(omit) }}" sleep: "{{ lxc_container_wait_params.sleep | default(omit) }}" timeout: "{{ lxc_container_wait_params.timeout | default(omit) }}" when: - (_mc is defined and _mc is changed) or (_ec is defined and _ec is changed) tags: - common-lxc |