Update plugin version to v2.0.2

Change-Id: Ieafc7ef281d18c1fe3fdcb0d22b5fee874b5433a
This commit is contained in:
alexey-mr 2016-12-02 18:49:36 +03:00
parent 579ad9a4eb
commit 4f4f0ba383
10 changed files with 21 additions and 12 deletions

View File

@ -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

View File

@ -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 = []

View File

@ -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 <https://docs.mirantis.com/openstack/fuel/fuel-6.1/user-guide.html#using-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/

View File

@ -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
====================

View File

@ -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

View File

@ -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"