From e73c709f3de5b3c104282afa0826a9b34ab2465b Mon Sep 17 00:00:00 2001 From: vsaienko Date: Thu, 15 Oct 2015 11:48:52 +0300 Subject: [PATCH] update README add basic instructions for building/installing plugin Change-Id: I8820b6c7770410a0175a5d8d245d1c0b9df2a6af --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e2913fa..bd2ad2f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,34 @@ ldap ============ -Plugin description \ No newline at end of file +LDAP is a Fuel plugin that allows to use existing LDAP server +as authentication backend for Keystone + +This repo contains all necessary files to build LDAP Fuel plugin. +Supported Fuel version is 7.0. + +Building the plugin +------------------- + +1. Clone the LDAP plugin repo from `https://github.com/stackforge/fuel-plugin-ldap`. +2. Install Fuel Plugin Builder: + + ``pip install fuel-plugin-builder`` + +3. Execute ``fpb --build `` command, where is the path to the plugin's main + folder (fuel-plugin-ldap). For example: + + ``fpb --build fuel-plugin-ldap/`` + +4. The ldap-.rpm plugin file will be created. + +5. Move this file to the Fuel Master node with secure copy (scp): + + ``scp ldap-.rpm root@::/tmp`` + ``cd /tmp`` + +6. Install it using the following command: + + ``fuel plugins --install ldap-.rpm`` + +6. Plugin is ready to use and can be enabled on the Settings tab of the Fuel web UI.