diff --git a/playbooks/roles/bifrost-configdrives-dynamic/README.md b/playbooks/roles/bifrost-configdrives-dynamic/README.md index 264698c33..83e6f9272 100644 --- a/playbooks/roles/bifrost-configdrives-dynamic/README.md +++ b/playbooks/roles/bifrost-configdrives-dynamic/README.md @@ -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, diff --git a/playbooks/roles/bifrost-configdrives-dynamic/defaults/main.yml b/playbooks/roles/bifrost-configdrives-dynamic/defaults/main.yml index 5c7625130..5471b29a1 100644 --- a/playbooks/roles/bifrost-configdrives-dynamic/defaults/main.yml +++ b/playbooks/roles/bifrost-configdrives-dynamic/defaults/main.yml @@ -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/"