3aa2cebe35
Removal and split of the group_vars all file resulted in a general clean-up and optomization of dependency information with-in the roles as defaults are required and a number of them were being supplied from group_vars/all. Additionally split out the group_vars/all file into group_vars/baremetal and group_vars/localhost files with improved comments to help direct a user wanting to perform deeper customization. Due to variable loading processes, additionally unwire the bifrost- create-bootable-image role, as it is no longer developed upon and the default vars are conflicting with the variables used across role. Additionally updated READMEs where appropriate. Co-Authored-By: stephane <stephane@alum.mit.edu> Change-Id: Ia6226a8573753ff02da19dcb3c2b5abfb9b3c297
21 lines
721 B
YAML
21 lines
721 B
YAML
---
|
|
# write_interfaces_file is intended for utilizing base logic to write
|
|
# a debian style interfaces file into the configuration drive file
|
|
# such that cirros will receive basic network configuration when
|
|
# performing basic testing.
|
|
write_interfaces_file: false
|
|
http_boot_folder: /httpboot
|
|
# Default location to the ssh public key for the user operating Bifrost.
|
|
ssh_public_key_path: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
|
|
|
|
# Default interface name
|
|
# TODO(TheJulia): Remove this default.
|
|
node_default_network_interface: eth0
|
|
|
|
# Basic networking defaults
|
|
# TODO(TheJulia): Require these to be supplied some other way.
|
|
ipv4_subnet_mask: 255.255.255.0
|
|
ipv4_gateway: 192.168.1.1
|
|
ipv4_nameserver: 8.8.8.8
|
|
network_mtu: 1500
|