diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-06-01 16:29:37 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-06-01 16:29:37 -0400 |
commit | 5864b795eee242b1fd7c5910abce69a931bb8738 (patch) | |
tree | d90f834be44e2bb687bf61f95e658393bff6440a /doc/examples | |
parent | 80301e1a4aa1a7396b2cb2d6c5d0e46b75a46a98 (diff) | |
parent | b7dfa8c9b75c74208f134dfd15538601fedc0258 (diff) | |
download | vyos-cloud-init-5864b795eee242b1fd7c5910abce69a931bb8738.tar.gz vyos-cloud-init-5864b795eee242b1fd7c5910abce69a931bb8738.zip |
support configurable urls for metadata service
Now, if a Eucalyptus install is in STATIC or SYSTEM mode,
the metadata service can still be used. In order to do that,
the user must configure their DNS so that 'instance-data' will
resolve to the cloud controller.
Thanks to Kieran Evans.
LP: #761847
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/cloud-config-datasources.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-datasources.txt b/doc/examples/cloud-config-datasources.txt index 3333792e..e04f8976 100644 --- a/doc/examples/cloud-config-datasources.txt +++ b/doc/examples/cloud-config-datasources.txt @@ -8,3 +8,10 @@ datasource: # after each try, a sleep of int(try_number/5)+1 is done # default sleep is 30 retries : 30 + + #metadata_url: a list of URLs to check for metadata services + metadata_urls: + - http://169.254.169.254:80 + - http://instance-data:8773 + + |