b4b206de42
Follow-up on I3259c0736a296751129aa349e8d378c0123957e6 Change-Id: I6b8935b16390a301602218ce35edfe132b140a4c
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
---
|
|
- hosts: all
|
|
vars_files:
|
|
- ../vars/zuul.yml
|
|
vars:
|
|
tag_suffix: "{{ '-aarch64' if ansible_architecture == 'aarch64' else '' }}"
|
|
kolla_build_config:
|
|
DEFAULT:
|
|
debug: true
|
|
logs_dir: "{{ kolla_build_logs_dir }}"
|
|
base: "{{ base_distro }}"
|
|
install_type: "{{ install_type }}"
|
|
template_override: /etc/kolla/template_overrides.j2
|
|
# NOTE(yoctozepto): to avoid issues with IPv6 not enabled in the docker daemon
|
|
# and since we don't need isolated networks here, use host networking
|
|
network_mode: host
|
|
work_dir: "{{ kolla_work_dir }}"
|
|
tasks:
|
|
- name: Ensure /etc/kolla exists
|
|
file:
|
|
path: /etc/kolla
|
|
state: directory
|
|
mode: 0777
|
|
become: true
|
|
|
|
- name: Add publisher config
|
|
vars:
|
|
kolla_publisher_config:
|
|
DEFAULT:
|
|
namespace: "{{ kolla_namespace }}"
|
|
tag: "{{ (zuul.branch | basename) ~ tag_suffix }}"
|
|
set_fact:
|
|
kolla_build_config: "{{ kolla_build_config | combine(kolla_publisher_config, recursive=True) }}"
|
|
when:
|
|
- publisher
|
|
|
|
- import_role:
|
|
name: kolla-build-config
|
|
|
|
- name: Template template_overrides.j2
|
|
template:
|
|
src: "{{ zuul.executor.work_root }}/{{ zuul.project.src_dir }}/tests/templates/template_overrides.j2"
|
|
dest: /etc/kolla/template_overrides.j2
|
|
|
|
- name: Run kolla-build
|
|
command: "{{ virtualenv_path }}/bin/kolla-build"
|