diff options
author | Chad Smith <chad.smith@canonical.com> | 2018-05-24 20:38:51 -0600 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2018-05-24 20:38:51 -0600 |
commit | f1cff69c40c282f30f07e0a169fd11dd4081108d (patch) | |
tree | 823efee7fa7671ade7c9f466cb193c6658b8aeb7 /doc/rtd/topics/datasources/openstack.rst | |
parent | 3f99f4aba8af559f99f1d46b2b46bea7622da1d0 (diff) | |
download | vyos-cloud-init-f1cff69c40c282f30f07e0a169fd11dd4081108d.tar.gz vyos-cloud-init-f1cff69c40c282f30f07e0a169fd11dd4081108d.zip |
doc: Add config info to ec2, openstack and cloudstack datasource docs
Also document instance-data.json on the top-level datasource topic page.
Diffstat (limited to 'doc/rtd/topics/datasources/openstack.rst')
-rw-r--r-- | doc/rtd/topics/datasources/openstack.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/rtd/topics/datasources/openstack.rst b/doc/rtd/topics/datasources/openstack.rst index 43592dec..0ea89943 100644 --- a/doc/rtd/topics/datasources/openstack.rst +++ b/doc/rtd/topics/datasources/openstack.rst @@ -25,18 +25,22 @@ The settings that may be configured are: the metadata service. (default: 10) * **retries**: The number of retries that should be done for an http request. This value is used only after metadata_url is selected. (default: 5) + * **apply_network_config**: A boolean specifying whether to configure the + network for the instance based on network_data.json provided by the + metadata service. When False, only configure dhcp on the primary nic for + this instances. (default: True) -An example configuration with the default values is provided as example below: +An example configuration with the default values is provided below: .. sourcecode:: yaml - #cloud-config datasource: OpenStack: metadata_urls: ["http://169.254.169.254"] max_wait: -1 timeout: 10 retries: 5 + apply_network_config: True Vendor Data |