Update version to v2.1.3.

Switch to puppet v1.2.0

Change-Id: I11f52785adf50f1395de36055eceb2b10f6a768b
This commit is contained in:
alexey-mr 2016-12-02 18:26:09 +03:00
parent 589502118f
commit cc618f88dd
10 changed files with 22 additions and 12 deletions

View File

@ -76,7 +76,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.1.1"
$ git checkout "tags/v2.1.3"
```
5. Check that the plugin is valid:
@ -91,7 +91,7 @@ need further instructions about how to build the Fuel Plugin Builder.*
7. Install plugin:
```
$ fuel plugins --install ./scaleio-2.1-2.1.1-1.noarch.rpm
$ fuel plugins --install ./scaleio-2.1-2.1.3-1.noarch.rpm
```
## ScaleIO Plugin install from Fuel Plugins Catalog
@ -102,12 +102,12 @@ To install the ScaleIOv2.0 Fuel plugin:
2. Copy the rpm file to the Fuel Master node
```
[root@home ~]# scp scaleio-2.1-2.1.1-1.noarch.rpm root@fuel-master:/tmp
[root@home ~]# scp scaleio-2.1-2.1.3-1.noarch.rpm root@fuel-master:/tmp
```
3. Log into Fuel Master node and install the plugin using the Fuel CLI
```
$ fuel plugins --install ./scaleio-2.1-2.1.1-1.noarch.rpm
$ fuel plugins --install ./scaleio-2.1-2.1.3-1.noarch.rpm
```
4. Verify that the plugin is installed correctly
@ -115,7 +115,7 @@ To install the ScaleIOv2.0 Fuel plugin:
[root@fuel-master ~]# fuel plugins
id | name | version | package_version
---|-----------------------|---------|----------------
1 | scaleio | 2.1.1 | 3.0.0
1 | scaleio | 2.1.3 | 3.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.1-2.1.2-1'
release = '2.1-2.1.2-1'
version = '2.1-2.1.3-1'
release = '2.1-2.1.3-1'
exclude_patterns = []

View File

@ -13,7 +13,7 @@ To install the ScaleIOv2.0 Fuel plugin:
#. Copy the *rpm* file to the Fuel Master node:
::
[root@home ~]# scp scaleio-2.1-2.1.1-1.noarch.rpm
[root@home ~]# scp scaleio-2.1-2.1.3-1.noarch.rpm
root@fuel-master:/tmp
#. Log into Fuel Master node and install the plugin using the
@ -21,14 +21,14 @@ To install the ScaleIOv2.0 Fuel plugin:
::
[root@fuel-master ~]# fuel plugins --install
/tmp/scaleio-2.1-2.1.1-1.noarch.rpm
/tmp/scaleio-2.1-2.1.3-1.noarch.rpm
#. Verify that the plugin is installed correctly:
::
[root@fuel-master ~]# fuel plugins
id | name | version | package_version
---|-----------------------|---------|----------------
1 | scaleio | 2.1.1 | 3.0.0
1 | scaleio | 2.1.3 | 3.0.0
.. _Fuel Plugins Catalog: https://www.mirantis.com/products/openstack-drivers-and-plugins/fuel-plugins/

View File

@ -1,3 +1,13 @@
Release Notes v2.1.3
====================
New Features
----------------
1. Use FTP server to download ScaleIO packages. Added appropriate option into the plugin settings to enable ability to use own FTP.
Release Notes v2.1.2
====================

View File

@ -5,7 +5,7 @@ name: scaleio
title: ScaleIOv2.0 plugin
# Plugin version
version: '2.1.2'
version: '2.1.3'
# 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.4"}
RELEASE=${RELEASE_TAG:-"v1.2.0"}
BASE_PUPPET_URL="https://github.com/codedellemc"