Changing the keystone repository link in devstack
Hi,
I am working with devstack to modify its Horizon with federated access. In my first step I am searching for the exact place to add the IDP’s. Towards my process of making it federated I am following the steps provided in the following link
https://github.com/kwss/keystone/blob/kent-federated-april/federated-docs/devstack-README
I have a doubt in modifying the keystone repository of devstack. Currently my repo in stackrc looks like this
unified auth system (manages accounts/tokens)
KEYSTONE_REPO=${KEYSTONE_REPO:-${GIT_BASE}/openstack/keystone.git} KEYSTONE_BRANCH=${KEYSTONE_BRANCH:-master}
python keystone client library to nova that horizon uses
KEYSTONECLIENT_REPO=${KEYSTONECLIENT_REPO:-${GIT_BASE}/openstack/python-keystoneclient.git} KEYSTONECLIENT_BRANCH=${KEYSTONECLIENT_BRANCH:-master}
I need to Modify the stackrc script with the correct keystone repository: The URL is https://github.com/kwss/keystone.git The latest branch is kent-federated-april
can someone please tell me if the changes I have done below is correct ?
unified auth system (manages accounts/tokens)
KEYSTONE_REPO=${KEYSTONE_REPO:-${GIT_BASE}/ kwss/keystone.git} KEYSTONE_BRANCH=${KEYSTONE_BRANCH:- kent-federated-april } I have a doubt if the below client library also needs to be changed ?
python keystone client library to nova that horizon uses
KEYSTONECLIENT_REPO=${KEYSTONECLIENT_REPO:-${GIT_BASE}/openstack/python-keystoneclient.git} KEYSTONECLIENT_BRANCH=${KEYSTONECLIENT_BRANCH:-master} emphasized textemphasized text