Fix missing ironic_url variable in config drive role

The ironic_url variable was being satisfied by another role,
and upon attempting to execute the roles separately, it was
found to be missing the variable.  Added variable default
and README text entry.

Change-Id: I1ff56d1081ed92ae21a9729e40d94e9550bf710b
This commit is contained in:
Julia Kreger 2015-10-16 12:11:39 -04:00
parent 6287c98d69
commit 39d7d136e5
2 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,7 @@ node_default_network_interface: This is the default network interface within
ipv4_nameserver: Defines the IPv4 nameserver to configure the node with
initially in order to support name resolution.
ipv4_address: The IPv4 address of the node to be deployed, if applicable.
ironic_url: Defines URL to ironic API. Defaults to "http://localhost:6385/"
ssh_public_key_path: Defines the path to the SSH public key file to be
inserted into the configuration drive.
ssh_public_key: If a user wishes to define an SSH public key as a string,

View File

@ -18,3 +18,6 @@ ipv4_subnet_mask: 255.255.255.0
ipv4_gateway: 192.168.1.1
ipv4_nameserver: 8.8.8.8
network_mtu: 1500
# Default URL to Ironic
ironic_url: "http://localhost:6385/"