diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2015-02-05 16:02:36 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2015-02-05 16:02:36 -0500 |
commit | ee96928a2d1c21c5d2319418f4cf6ca774a3e010 (patch) | |
tree | 0472b4be53d3b93b34b8d0491949628d4baca8b0 /inventory | |
parent | 55b7f22404da7a0cfcdbce467e9581f6b8509320 (diff) | |
download | openshift-ee96928a2d1c21c5d2319418f4cf6ca774a3e010.tar.gz openshift-ee96928a2d1c21c5d2319418f4cf6ca774a3e010.tar.bz2 openshift-ee96928a2d1c21c5d2319418f4cf6ca774a3e010.tar.xz openshift-ee96928a2d1c21c5d2319418f4cf6ca774a3e010.zip |
Attempting to only refresh cache when doing --list on ossh.
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/aws/ec2.ini | 4 | ||||
-rwxr-xr-x | inventory/multi_ec2.py | 15 |
2 files changed, 16 insertions, 3 deletions
diff --git a/inventory/aws/ec2.ini b/inventory/aws/ec2.ini index c6693bb1c..cdc22d2d4 100644 --- a/inventory/aws/ec2.ini +++ b/inventory/aws/ec2.ini @@ -11,8 +11,8 @@ # AWS regions to make calls to. Set this to 'all' to make request to all regions # in AWS and merge the results together. Alternatively, set this to a comma # separated list of regions. E.g. 'us-east-1,us-west-1,us-west-2' -#regions = all -regions = us-east-1 +regions = all +#regions = us-east-1 regions_exclude = us-gov-west-1,cn-north-1 # When generating inventory, Ansible needs to know how to address a server. diff --git a/inventory/multi_ec2.py b/inventory/multi_ec2.py index c60bb50d2..499264267 100755 --- a/inventory/multi_ec2.py +++ b/inventory/multi_ec2.py @@ -43,9 +43,15 @@ class MultiEc2(object): else: raise RuntimeError("Could not find valid ec2 credentials in the environment.") + if self.args.cache_only: + # get data from disk + result = self.get_inventory_from_cache() + if not result: + self.get_inventory() + self.write_to_cache() # if its a host query, fetch and do not cache - if self.args.host: + elif self.args.host: self.get_inventory() elif not self.is_cache_valid(): # go fetch the inventories and cache them if cache is expired @@ -186,6 +192,8 @@ class MultiEc2(object): ''' Command line argument processing ''' parser = argparse.ArgumentParser(description='Produce an Ansible Inventory file based on a provider') + parser.add_argument('--cache-only', action='store_true', default=False, + help='Fetch cached only instances (default: False)') parser.add_argument('--list', action='store_true', default=True, help='List instances (default: True)') parser.add_argument('--host', action='store', default=False, @@ -203,9 +211,14 @@ class MultiEc2(object): ''' Reads the inventory from the cache file and returns it as a JSON object ''' + if not os.path.isfile(self.cache_path): + return None + with open(self.cache_path, 'r') as cache: self.result = json.loads(cache.read()) + return True + def json_format_dict(self, data, pretty=False): ''' Converts a dict to a JSON object and dumps it as a formatted string ''' |