Execution
Date 08 Dec 2025 13:57:07 +0000
Duration 00:24:46.17
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.11
Summary
12 Hosts
1505 Tasks
1497 Results
32 Plays
487 Files
0 Records

File: /etc/ansible/roles/os_zun/tasks/zun_post_install.yml

---
# Copyright 2018, 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.

- name: Define the docker api
  block:
    - name: Get docker api version
      ansible.builtin.command: >-
        {% raw %}
        docker version -f "{{ .Client.APIVersion }}"
        {% endraw %}
      failed_when: false
      changed_when: false
      register: docker_version

    - name: Set docker api version fact
      ansible.builtin.set_fact:
        zun_docker_api_version: "{{ docker_version.stdout | trim }}"
  when:
    - zun_services['zun-compute']['group'] in group_names

- name: Generate zun config
  openstack.config_template.config_template:
    src: "{{ item.src }}"
    dest: "{{ item.dest }}"
    owner: "{{ zun_system_user_name }}"
    group: "{{ zun_system_group_name }}"
    mode: "0640"
    config_overrides: "{{ item.config_overrides }}"
    config_type: "{{ item.config_type }}"
  with_items:
    - src: "zun.conf.j2"
      dest: "/etc/zun/zun.conf"
      config_overrides: "{{ zun_zun_conf_overrides }}"
      config_type: "ini"
    - src: "rootwrap.conf.j2"
      dest: "/etc/zun/rootwrap.conf"
      config_overrides: "{{ zun_rootwrap_conf_overrides }}"
      config_type: "ini"
    - src: "api-paste.ini.j2"
      dest: "/etc/zun/api-paste.ini"
      config_overrides: "{{ zun_api_paste_ini_overrides }}"
      config_type: "ini"
  notify:
    - Restart uwsgi services
    - Restart zun services
  tags:
    - zun-config
    - zun-post-install

- name: Implement policy.yaml file
  openstack.config_template.config_template:
    content: "{{ zun_policy_overrides }}"
    dest: "/etc/zun/policy.yaml"
    config_type: yaml
  when:
    - zun_services['zun-api']['group'] in group_names
  tags:
    - zun-policy-override

- name: Synchronize the zun DB schema
  ansible.builtin.command: "{{ zun_bin }}/zun-db-manage --config-dir /etc/zun upgrade"
  become: true
  become_user: "{{ zun_system_user_name }}"
  changed_when: false
  when:
    - _zun_is_first_play_host