diff --git a/README.md b/README.md index 13cb457..a930ea3 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ need further instructions about how to build the Fuel Plugin Builder.* ``` $ git clone https://github.com/openstack/fuel-plugin-scaleio.git $ cd fuel-plugin-scaleio - $ git checkout "tags/v2.0.1" + $ git checkout "tags/v2.0.2" ``` 5. Check that the plugin is valid: @@ -92,7 +92,7 @@ need further instructions about how to build the Fuel Plugin Builder.* 7. Install plugin: ``` - $ fuel plugins --install ./scaleio-2.0-2.0.1-1.noarch.rpm + $ fuel plugins --install ./scaleio-2.0-2.0.2-1.noarch.rpm ``` ## ScaleIO Plugin install from Fuel Plugins Catalog @@ -103,12 +103,12 @@ To install the ScaleIOv2.0 Fuel plugin: 2. Copy the rpm file to the Fuel Master node ``` - [root@home ~]# scp scaleio-2.0-2.0.1-1.noarch.rpm root@fuel-master:/tmp + [root@home ~]# scp scaleio-2.0-2.0.2-1.noarch.rpm root@fuel-master:/tmp ``` 3. Log into Fuel Master node and install the plugin using the Fuel CLI ``` - [root@fuel-master ~]# fuel plugins --install /tmp/scaleio-2.0-2.0.1-1.noarch.rpm + [root@fuel-master ~]# fuel plugins --install /tmp/scaleio-2.0-2.0.2-1.noarch.rpm ``` 4. Verify that the plugin is installed correctly @@ -116,7 +116,7 @@ To install the ScaleIOv2.0 Fuel plugin: [root@fuel-master ~]# fuel plugins id | name | version | package_version ---|-----------------------|---------|---------------- - 1 | scaleio | 2.0.1 | 2.0.0 + 1 | scaleio | 2.0.2 | 2.0.0 ``` # User Guide diff --git a/doc/source/conf.py b/doc/source/conf.py index c32e65f..1e9c291 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -11,8 +11,8 @@ master_doc = 'index' project = u'The ScaleIO plugin for Fuel' copyright = u'2016, EMC Corporation' -version = '2.0-2.0.1-1' -release = '2.0-2.0.1-1' +version = '2.0-2.0.2-1' +release = '2.0-2.0.2-1' exclude_patterns = [] diff --git a/doc/source/installation.rst b/doc/source/installation.rst index f781493..1cdb90e 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -12,20 +12,20 @@ To install the ScaleIOv2.0 Fuel plugin: #. Download it from the `Fuel Plugins Catalog`_ #. Copy the *rpm* file to the Fuel Master node: :: - [root@home ~]# scp scaleio-2.0-2.0.1-1.noarch.rpm + [root@home ~]# scp scaleio-2.0-2.0.2-1.noarch.rpm root@fuel-master:/tmp #. Log into Fuel Master node and install the plugin using the `Fuel CLI `_: :: [root@fuel-master ~]# fuel plugins --install - /tmp/scaleio-2.0-2.0.1-1.noarch.rpm + /tmp/scaleio-2.0-2.0.2-1.noarch.rpm #. Verify that the plugin is installed correctly: :: [root@fuel-master ~]# fuel plugins id | name | version | package_version ---|-----------------------|---------|---------------- - 1 | scaleio | 2.0.1 | 2.0.0 + 1 | scaleio | 2.0.2 | 2.0.0 .. _Fuel Plugins Catalog: https://www.mirantis.com/products/openstack-drivers-and-plugins/fuel-plugins/ diff --git a/doc/source/release_notes.rst b/doc/source/release_notes.rst index bfabb8a..d1fb4bb 100644 --- a/doc/source/release_notes.rst +++ b/doc/source/release_notes.rst @@ -1,3 +1,12 @@ +Release Notes v2.0.2 +==================== + +New Features +---------------- + +1. Use FTP server for downloading ScaleIO packages. Added appropriate parameter into the plugin settings to enable ability use own server. + + Release Notes v2.0.1 ==================== diff --git a/doc/testing/TestPlanforScaleIOFuelPlugin.docx b/doc/testing/TestPlanforScaleIOFuelPlugin.docx index c857b18..1147c33 100644 Binary files a/doc/testing/TestPlanforScaleIOFuelPlugin.docx and b/doc/testing/TestPlanforScaleIOFuelPlugin.docx differ diff --git a/doc/testing/TestPlanforScaleIOFuelPlugin.pages b/doc/testing/TestPlanforScaleIOFuelPlugin.pages index eb78a83..673428a 100644 Binary files a/doc/testing/TestPlanforScaleIOFuelPlugin.pages and b/doc/testing/TestPlanforScaleIOFuelPlugin.pages differ diff --git a/doc/testing/TestReportScaleIOFuelPlugin.docx b/doc/testing/TestReportScaleIOFuelPlugin.docx index f82375f..09575a1 100644 Binary files a/doc/testing/TestReportScaleIOFuelPlugin.docx and b/doc/testing/TestReportScaleIOFuelPlugin.docx differ diff --git a/doc/testing/TestReportScaleIOFuelPlugin.pages b/doc/testing/TestReportScaleIOFuelPlugin.pages index c67c298..7a733fc 100644 Binary files a/doc/testing/TestReportScaleIOFuelPlugin.pages and b/doc/testing/TestReportScaleIOFuelPlugin.pages differ diff --git a/metadata.yaml b/metadata.yaml index ad2cd99..7d288fd 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -5,7 +5,7 @@ name: scaleio title: ScaleIOv2.0 plugin # Plugin version -version: '2.0.1' +version: '2.0.2' # Description description: This plugin deploys and enables EMC ScaleIO ver. 2.0 as the block storage backend diff --git a/pre_build_hook b/pre_build_hook index 7e70646..dc8acf5 100755 --- a/pre_build_hook +++ b/pre_build_hook @@ -11,7 +11,7 @@ set -eux -RELEASE=${RELEASE_TAG:-"v1.1.0"} +RELEASE=${RELEASE_TAG:-"v1.2.0"} BASE_PUPPET_URL="https://github.com/codedellemc"