Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
121 views

I am using Openstack - Stein in CentOS 7.9 I was using python to collect data about the openstack nova performance, like server names and id in the openstack project, i have 3 instance(server) created,...
Kavin Kumar's user avatar
1 vote
0 answers
210 views

Currently I am working on the project where I need to collect all questions from the Stack Overflow site. from stackapi import StackAPI SITENAME = 'stackoverflow' SITE = StackAPI(SITENAME) questions ...
Biggy Poopa's user avatar
1 vote
0 answers
2k views

I'm trying to use the Openstack API for the first time with the Python SDK. But I am getting below error: Unable to establish connection to https://172.23.13.30/v3/auth/tokens: HTTPSConnectionPool(...
Oshin aggrawal's user avatar
0 votes
2 answers
566 views

I'm trying to switch from openStack v2 to v3 but I'm having trouble requesting a token. here is the POST request { "auth": { "identity": { ...
Mel's user avatar
  • 745
1 vote
0 answers
437 views

I wanted to make a notification system for StackOverflow using tkinter, when an item is unread in my inbox i want it to show the notification(but only once), which it does. But its not efficient. In ...
Delrius Euphoria's user avatar
1 vote
1 answer
674 views

I can authenticate against the keystone API using the following code: from keystoneauth1 import session from keystoneauth1.identity import v3 from openstack import connection auth = v3.Password( ...
crypticgamer's user avatar
1 vote
0 answers
86 views

I want to ask how to get the list IP Address in my getproject(): addresses={ 'int-ext': [ { 'version': 4, 'addr': '192.168.1.201', 'OS-EXT-IPS:type': 'fixed', 'OS-EXT-IPS-...
Surya's user avatar
  • 11
0 votes
0 answers
268 views

I have a project that authenticates against the keystone API using python, in the last few weeks my auth method has stopped working and I can't see why. The module looks like this: from ...
Lance Haig's user avatar
0 votes
1 answer
501 views

I would like to use this openstack command using the Python API. Going through the Neutron documentation, I found this page. I tried executing 'network_ip_availability.ListIpAvailability(neutron....
CheddarChiz's user avatar
0 votes
1 answer
328 views

Getting Nova Server From Metadata Hi, I'm using jclouds SDK with Java to retrieve OpenStack Nova Servers, i can retrieve the server through its id, but i didn't find any other way that i can get a ...
ibr's user avatar
  • 447
1 vote
1 answer
273 views

What is the difference between: using "the Command-line interface to the OpenStack APIs" through the command "openstack" and using the separate APIs of the different components (for example using the ...
Scampo's user avatar
  • 33
1 vote
1 answer
1k views

I am automating instance creation using OpenstackSDK and passing bash script with commands as userdata. But the script does not excute even though the instance is crated. When I do this manually via ...
Buggy B's user avatar
  • 795
1 vote
1 answer
667 views

I am using openstack4j java api. I am able to access 2 openstack projects (image for projects that I can access), given instance id I want to shut down the instance. While getting OSClient, I loop ...
Rishi Anand's user avatar
1 vote
2 answers
1k views

We are currently using Openstack newtown. We can access the API using client on public endpoint from any computer, but the vm don't have access to it, they can ping the IP and dns name but can't curl ...
Dubs's user avatar
  • 670
0 votes
1 answer
727 views

I've been trying to create an OpenStack image informing the Kernel Id and Ramdisk Id, using the OpenStack Unified SDK (https://github.com/openstack/python-openstacksdk), but without success. I know ...
Vini.g.fer's user avatar
0 votes
1 answer
316 views

I'm trying to download an OpenStack image from glance using only the Openstack Python SDK, but I only get this error: Traceback (most recent call last): File "/home/openstack/discovery/discovery.py"...
Vini.g.fer's user avatar