
This change adds support for the kayobe_control_host_become variable to CI jobs. This variable will cause any uses of become on localhost to fail. This allows us to test that the kayobe_control_host_become configuration variable has successfully removed all uses of become. I've enabled this on a subset of jobs to get good test coverage. Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/949758 Change-Id: I6da98e055714f75112cf08ff8aa53dd84de2e425
28 lines
991 B
YAML
28 lines
991 B
YAML
---
|
|
- hosts: primary
|
|
tasks:
|
|
# NOTE(mgoddard): The kayobe dev config by default expects a bridge -
|
|
# breth1 - to exist with an IP address of 192.168.33.3.
|
|
- import_role:
|
|
name: kayobe-network-bootstrap
|
|
vars:
|
|
bridge_interface: breth1
|
|
bridge_ip: 192.168.33.3
|
|
bridge_prefix: 24
|
|
bridge_port_interface: dummy1
|
|
|
|
# NOTE(mgoddard): Use the name zz-20-overrides.yml to ensure this takes
|
|
# precedence over the standard config files, but can control order with the
|
|
# priority (number after zz).
|
|
- name: Ensure kayobe-config override config file exists
|
|
template:
|
|
src: overrides.yml.j2
|
|
dest: "{{ previous_kayobe_config_src_dir }}/etc/kayobe/zz-20-overrides.yml"
|
|
vars:
|
|
is_previous_release: true
|
|
|
|
- name: Ensure kolla-ansible globals.yml override config file exists
|
|
template:
|
|
src: globals.yml.j2
|
|
dest: "{{ previous_kayobe_config_src_dir }}/etc/kayobe/kolla/globals.yml"
|