Questions tagged [keystone]

Keystone is the identity service used by OpenStack for authentication.

Essentially keystone's role is to grant tokens to users be they people, services, or anything at all.

If you make an API query anywhere in OpenStack, keystone's API is how it is discovered if you are allowed to make that API query.

247 questions
2
votes
6 answers

Cloudfoundry grizzly keystone with devstack Install: configparser error in keystone.conf

I'm trying to install opnstack grizzly on a fresh ubuntu 12.04 server. The sript runs fin until it reach this point : screen -S stack -p key -X stuff 'cd /opt/stack/keystone && /opt/stack/keystone/bin/keystone-all --config-file…
Damien
  • 21
  • 1
  • 3
2
votes
1 answer

OpenStack keystoneclient get user by name

I know it is possible to get a user by id but all I have available is the name. Anyone know how to get a user by name using the keystone client v 2.0? from keystoneclient.v2_0 import client keystone = client.Client(username=USER, …
ldeluca
  • 934
  • 3
  • 12
  • 25
2
votes
2 answers

getting user list from openstack keystone api

I want to perform CRUD operation on openstack keystone user. according to keystone api docs we must use GET request along with x-auth-token information. I have written a code for that but I could not get any user list but instead I get "404 Not…
Sanjaya Dahal
  • 31
  • 2
  • 7
1
vote
1 answer

how can I use a keystonejs v6 inside a nestjs app?

Suppose I already have a Keystone setup installed in a folder, and now I want to extend this app by adding some REST API endpoints to it. The standard way to achieve this is by using extendExpressApp, but it doesn't work when all my development…
1
vote
1 answer

consume a REST API through KeyStoneJS v6

I'm dealing with a bit of a weird use case. I am using KeyStoneJS v6, through which I must interact with a REST API, make "GET" and "POST" requests, and return the data obtained to my NextJS client through my graphql api. I have found some examples…
1
vote
1 answer

Keystone js 6: How to add access control on id field of a list

I have a problem with adding an access control on an id field of a list, since id field is added automatically when file schema.prisma is added. I want to make an id field with the following access: access: { read: ()=> true, update: ()=> false } I…
Daria
  • 15
  • 2
1
vote
0 answers

How to resolve "Unable to resolve host" in OpenStack Yoga?

I’m trying to install Openstack on CentOS Stream 9 by following the official openstack installation guide for Yoga available at: https://docs.openstack.org/install-guide/ When I try to bootstrap keystone I get the following…
1
vote
0 answers

Keystone keystone.ts: Couldn't find a Program

After installation step of yarn, keystone.js is having issues with doing postinstall. It might be related to the babel issue. at Scope.getProgramParent (/user-service/node_modules/next/dist/compiled/babel/bundle.js:1910:391266) at Scope.crawl…
1
vote
2 answers

Unable to init microstack

I'm trying to install openstack on ubuntu 20.04 server but init fails. Can someone please explain why this error and any suggestions? 2022-04-29 12:08:28,706 - microstack_init - INFO - Setting up as a control node. 2022-04-29 12:08:40,467 -…
Ines
  • 11
  • 3
1
vote
1 answer

In Keystone JS v6, is there a way to store users without password being a required option?

I want to offer my users password-based authentication but also the possibility to log in with Oauth providers. I've looked into the Next-Auth adapters to get a reference for creating the schema and I'm also aware that there's an OpenSource package…
1
vote
1 answer

Deploy kolla-ansible OpenStask wuth LDAP integration

Please tell me how deploy OpenStack with Ansible Kolla with LDAP integration.
Andrey
  • 11
  • 1
1
vote
1 answer

How to keep the keystore file private on flutter?

I'm trying to deploying my flutter app to Google play store as a test. On this document, https://flutter.dev/docs/deployment/android, I think I need to store my keystone file private, but I'm not sure how to do it. I'm completely a beginner to…
user13433173
1
vote
0 answers

Manage OPTIONS request to the KeyRock API

I´m trying to access the Keyrock API like in the URL : https://keyrock.docs.apiary.io/#reference/keyrock-api/authentication/create-token-with-password-method. For example, to create a token with user and password, POST https://keyrock/v1/auth/tokens…
Olivertem
  • 31
  • 2
1
vote
0 answers

Installing and Configuring Keystone for Openstack Queens on RHEL

Run the following command to install the packages: # yum install openstack-keystone httpd mod_wsgi Edit the /etc/keystone/keystone.conf file and complete the following actions: In the [database] section, configure database access: …
Madhav
  • 41
  • 6
1
vote
0 answers

Fiware pep-proxy and idm communication issue

I wanted to connect pep-proxy with the idm .. so I followed the installation of pep from that link .. https://github.com/ging/fiware-pep-proxy by building it from the source . That was the config file i was supposed to edit // Credentials obtained…
ahmad emad
  • 172
  • 1
  • 13
1 2
3
16 17