Skip to content

Commit

Permalink
Release version 17.04.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adkerr committed Apr 6, 2017
1 parent 00ebf63 commit fd2e77e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 11 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ add your name in alphabetical order with your first pull request:
* Griffith, John
* Hannon, Matthew
* Hocutt, Jared
* Kerr, Andrew
* Knight, Clinton
* Mueller, Garrett
* Naylor, Brian
* Rippy, Jonathan
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@
**Fixes:**

- Stopped using redundant debug parameter from config file.
- Prevent creating volumes with duplicate names on SolidFire.
- Fixed cloning from a snapshot in SolidFire.
- Fixed a rare SliceNotRegistered error when cloning volumes with SolidFire.
- Resolved an iSCSI attachment bug when using multipathing.

**Enhancements:**

- Added release notes (CHANGELOG.md).
- Added minimum Data ONTAP version check.
- Added minimum ONTAP version check.
- Logging enhancements: log rotation, log level control, simultaneous logging
to console and file.
- Added default ONTAP volume creation options to config.json that were previously only available via '-o'.
- Added ONTAP securityStyle option handling.
- Added default volume size to config file.
- Standardized volume size format across ONTAP, SolidFire, and E-series drivers.
- Standardized volume size format across ONTAP, SolidFire, and E-series drivers.
- Reduced log spam when debug logging is enabled with SolidFire.
- Moved README.md contents to [Read the Docs](http://netappdvp.readthedocs.io/en/latest/).
- `.snapshots` directory is now hidden in ONTAP NFS mounts by default.
2 changes: 1 addition & 1 deletion contrib/docker/plugin/pluginname
Original file line number Diff line number Diff line change
@@ -1 +1 @@
netapp/ndvp-plugin:1.4.0
netapp/ndvp-plugin:17.04.0
8 changes: 4 additions & 4 deletions docs/install/host_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ Traditional Install Method (Docker <= 1.12)
.. code-block:: bash
# download and unpack the application
wget https://github.com/NetApp/netappdvp/releases/download/v1.4.0/netappdvp-1.4.0.tar.gz
tar zxf netappdvp-1.4.0.tar.gz
wget https://github.com/NetApp/netappdvp/releases/download/v17.04.0/netappdvp-17.04.0.tar.gz
tar zxf netappdvp-17.04.0.tar.gz
# move to a location in the bin path
sudo mv netappdvp /usr/local/bin
Expand Down Expand Up @@ -280,7 +280,7 @@ Docker Managed Plugin Method (Docker >= 1.13 / 17.03)
.. code-block:: bash
docker plugin install store/netapp/ndvp-plugin:1.4.0 --alias netapp --grant-all-permissions
docker plugin install store/netapp/ndvp-plugin:17.04.0 --alias netapp --grant-all-permissions
#. Begin using nDVP to consume storage from the configured system.
Expand All @@ -293,4 +293,4 @@ Docker Managed Plugin Method (Docker >= 1.13 / 17.03)
docker run --rm -it --volume-driver netapp --volume secondVolume:/my_vol alpine ash
# remove the volume "firstVolume"
docker volume rm firstVolume
docker volume rm firstVolume
4 changes: 2 additions & 2 deletions docs/install/multi_instance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Multiple instances of nDVP are needed when you desire to have multiple storage c

.. code-block:: bash
docker plugin install store/netapp/ndvp-plugin:1.4.0 --alias silver --config silver.json --grant-all-permissions
docker plugin install store/netapp/ndvp-plugin:17.04.0 --alias silver --config silver.json --grant-all-permissions
#. Launch the second instance, specifying a different alias and configuration file

.. code-block:: bash
docker plugin install store/netapp/ndvp-plugin:1.4.0 --alias gold --config gold.json --grant-all-permissions
docker plugin install store/netapp/ndvp-plugin:17.04.0 --alias gold --config gold.json --grant-all-permissions
#. Create volumes specifying the alias as the driver name

Expand Down
2 changes: 1 addition & 1 deletion docs/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This quick start is targeted at the Docker Managed Plugin method (Docker >= 1.13
.. code-block:: bash
docker plugin install store/netapp/ndvp-plugin:1.4.0 --alias netapp --grant-all-permissions
docker plugin install store/netapp/ndvp-plugin:17.04.0 --alias netapp --grant-all-permissions
#. Begin using nDVP to consume storage from the configured system.
Expand Down
2 changes: 1 addition & 1 deletion storage_drivers/storage_drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
const ConfigVersion = 1

// DriverVersion is the actual release version number
const DriverVersion = "1.4.0"
const DriverVersion = "17.04.0"

// ExtendedDriverVersion can be overridden by embeddors such as Trident to uniquify the version string
var ExtendedDriverVersion = "native"
Expand Down

0 comments on commit fd2e77e

Please sign in to comment.