Support kamaki 0.8
authorNikos Skalkotos <skalkoto@grnet.gr>
Thu, 25 Apr 2013 13:39:07 +0000 (16:39 +0300)
committerNikos Skalkotos <skalkoto@grnet.gr>
Thu, 25 Apr 2013 13:39:07 +0000 (16:39 +0300)
In kamaki 0.8 `store' command is replaced with `file' and `astakos' is
replaced with `user'.

image_creator/kamaki_wrapper.py

index 654a933..3f809d0 100644 (file)
@@ -61,7 +61,7 @@ class Kamaki(object):
     def get_account(token):
         """Return the account corresponding to this token"""
         config = Config()
     def get_account(token):
         """Return the account corresponding to this token"""
         config = Config()
-        astakos = AstakosClient(config.get('astakos', 'url'), token)
+        astakos = AstakosClient(config.get('user', 'url'), token)
         try:
             account = astakos.info()
         except ClientError as e:
         try:
             account = astakos.info()
         except ClientError as e:
@@ -78,7 +78,7 @@ class Kamaki(object):
 
         config = Config()
 
 
         config = Config()
 
-        pithos_url = config.get('store', 'url')
+        pithos_url = config.get('file', 'url')
         self.pithos_client = PithosClient(
             pithos_url, self.account['auth_token'], self.account['uuid'],
             self.CONTAINER)
         self.pithos_client = PithosClient(
             pithos_url, self.account['auth_token'], self.account['uuid'],
             self.CONTAINER)