Correct ipv4 networking config issue in dynamic path
A syntax error in a template file coupled with the incorect ipv4_gateway being set when testing resulted in Cirros being unable to get a working network interface online. This corrects the template and addresses the ipv4_gateway default when using the test playbook. Change-Id: I7155de8ec9a4123e16a9f9925a66ee12adfc9c28
This commit is contained in:
parent
7d6ba6a295
commit
5bd90bab01
@ -3,8 +3,6 @@ auto lo
|
||||
iface lo inet loopback
|
||||
|
||||
auto {{ node_default_network_interface }}
|
||||
iface {{ node_default_network_interface }} inet static
|
||||
|
||||
{% if addressing_mode is defined and "dhcp" in addressing_mode %}
|
||||
iface {{ node_default_network_interface }} inet dhcp
|
||||
{% else %}
|
||||
|
@ -19,6 +19,9 @@
|
||||
set_fact:
|
||||
ci_testing_zuul: true
|
||||
when: "'bare-trusty' in ansible_hostname"
|
||||
- name: "Override the ipv4_gateway setting"
|
||||
set_fact:
|
||||
ipv4_gateway: "192.168.122.1"
|
||||
- name: "Collect process list if running in OpenStack CI"
|
||||
command: ps aux
|
||||
when: ci_testing_zuul is defined
|
||||
|
Loading…
x
Reference in New Issue
Block a user