Questions tagged [libcloud]

Apache Libcloud is a standard Python library that abstracts away differences from multiple cloud provider APIs.

57 questions
0
votes
1 answer

Is it possible to start / stop a node via libcloud

I'm trying to find a way to stop or start a node (device, instance) via libcloud and I cannot find a method for this. Could this basic functionality be missing? I'm now looking for working against EC2, but may need to work against other providers as…
0
votes
1 answer

How to uninstall Apache libcloud?

I want to completely uninstall Apache libcloud. Location of libcloud /usr/lib/python2.7/dist-packages/libcloud I have used this command to uninstall sudo apt-get remove --auto-remove python-libcloud Error while trying to install again Requirement…
Anurag
  • 73
  • 8
0
votes
3 answers

How to list AWS EC2 regions with libcloud

Is there a way to get the list of all regions available on AWS through libcloud ? With powershell AWS SDK I can use : $regions = @(Get-AWSRegion) foreach ($region in $regions) { $region.Region } How can I do the same with Python and libcloud ? Many…
0
votes
1 answer

Libcloud library in python equivalent to nodejs

we can use libcloud in python as api interface services since its a cloud library .so like this how can we use this library in nodejs language? Any idea guys,as far I know there is one library SDK but its an was official one.any other guys? …
0
votes
1 answer

Ansible - Create GCE node with fixed IP

I want to create a GCE node with ansible and attach it a fixed IP. My problem is ansible doesn't seem to purpose this option. After googling and searching in source code, I can't find where is the code which deploy instances. If anyone has an idea ?
Zulu
  • 8,765
  • 9
  • 49
  • 56
0
votes
1 answer

Deploy the existing node in Libcloud

I'm working with libcloud but meet the difficulty: I can use the method deploy_node() to deploy file/shell command to the cloud node. It work perfectly except that I have to pass the create node data inside the function. That means I cannot deploy…
Dac Nguyen
  • 21
  • 2
0
votes
1 answer

python libcloud vcloud connection

I am trying to connect to Vcloud using lib cloud, the authentication works fine using rest API from firefox, but fails in python. am I missing something? __author__ = 'kshk' from libcloud.compute.types import Provider from libcloud.compute.providers…
krisdigitx
  • 7,068
  • 20
  • 61
  • 97
0
votes
1 answer

how to specify zone for aws in pkgcloud while createClient?

I'm using pkgcloud npm for multicloud access. and i want to list out all instances from all zone (like US East (N. Virginia),US West (Oregon),US West (N. California),EU (Ireland)) etc. here is my code var aws =…
Jaydipsinh
  • 491
  • 1
  • 9
  • 27
-1
votes
1 answer

ex_modify_instance_attribute and create_node has AuthFailure error use apache-libcloud AWS EC2 driver

When I use AWS EC2 driver invoke create_node and ex_modify_instance_attribute API , I got this error: raise InvalidCredsError(err_list[-1]) libcloud.common.types.InvalidCredsError: 'AuthFailure: AWS was not able to validate the provided access…
-1
votes
1 answer

Is there any function in libcloud to upload an image using openstack?

I am using libcloud to retreive information from openstack.Is there any method to upload an image ?
Deepi
  • 1
-1
votes
1 answer

libcloud and accounts and payments with multiple providers

Do I need to set up an account and payment information for each provider I intend to use with libcloud? Are there any service offerings that allow you to sign up for payment once through them and interact with all libcloud listed providers easily?
-2
votes
1 answer

Libcloud - serviceCatalog empty, but OpenStack lists the services

I'm trying to run some tests with libcloud for OpenStack, but getting stuck on Could not find specified endpoint issue. When I run this code: from libcloud.compute.types import Provider from libcloud.compute.providers import get_driver import…
Vini.g.fer
  • 11,639
  • 16
  • 61
  • 90
1 2 3
4