File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
environments/ci-builder/inventory/group_vars/seed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -172,8 +172,9 @@ jobs:
172
172
- name : Write Terraform network interface config
173
173
run : |
174
174
mkdir -p etc/kayobe/environments/$KAYOBE_ENVIRONMENT/inventory/group_vars/seed
175
- cat << EOF > etc/kayobe/environments/$KAYOBE_ENVIRONMENT/inventory/group_vars/seed/tf- network-interfaces
175
+ cat << EOF > etc/kayobe/environments/$KAYOBE_ENVIRONMENT/inventory/group_vars/seed/network-interfaces
176
176
admin_interface: "{{ access_interface.value }}"
177
+ aio_interface: "{{ access_interface.value }}"
177
178
EOF
178
179
179
180
- name : Manage SSH keys
Original file line number Diff line number Diff line change 40
40
disk_format : qcow2
41
41
state : present
42
42
filename : " {{ local_image_path }}"
43
+ visibility : " shared"
Original file line number Diff line number Diff line change 2
2
###############################################################################
3
3
# Network interface definitions for the controller group.
4
4
5
- # Seed interface on all-in-one network.
6
- aio_interface: eth0
5
+ # Controller interface on all-in-one network.
6
+ aio_interface: breth1
7
+ # Use dummy1 if it exists, otherwise the bridge will have no ports.
8
+ aio_bridge_ports: "{{ ['dummy1'] if 'dummy1' in hostvars[inventory_hostname].ansible_facts else [] }}"
9
+
10
+ ###############################################################################
11
+ # Dummy variable to allow Ansible to accept this file.
12
+ workaround_ansible_issue_8743: yes
13
+
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ overcloud_dib_host_packages_extra:
71
71
overcloud_dib_git_elements_extra :
72
72
- repo : " https://github.com/stackhpc/stackhpc-image-elements"
73
73
local : " {{ source_checkout_path }}/stackhpc-image-elements"
74
- version : " v1.6.1 "
74
+ version : " fix-rocky-containerfile "
75
75
elements_path : " elements"
76
76
77
77
# List of git repositories containing Diskimage Builder (DIB) elements. See
You can’t perform that action at this time.
0 commit comments