Skip to content

Commit

Permalink
Update version to 19.04
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonk authored Feb 1, 2019
1 parent 364a9cc commit 48a864a
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ GO=${DR} go
default: dist

## version variables
TRIDENT_VERSION ?= 19.01.0
TRIDENT_VERSION ?= 19.04.0
TRIDENT_IMAGE ?= trident
ifeq ($(BUILD_TYPE),custom)
TRIDENT_VERSION := ${TRIDENT_VERSION}-custom
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (
/* Misc. orchestrator constants */
OrchestratorName = "trident"
OrchestratorClientName = OrchestratorName + "ctl"
orchestratorVersion = "19.01.0"
orchestratorVersion = "19.04.0"
OrchestratorAPIVersion = "1"
PersistentStoreBootstrapAttempts = 30
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
Expand Down
2 changes: 1 addition & 1 deletion docs/docker/deploying.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Deploying
.. code-block:: bash
docker plugin install netapp/trident-plugin:19.01 --alias netapp --grant-all-permissions
docker plugin install netapp/trident-plugin:19.04 --alias netapp --grant-all-permissions
#. Begin using Trident to consume storage from the configured system.
Expand Down
6 changes: 3 additions & 3 deletions docs/docker/install/host_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ Traditional Install Method (Docker <= 1.12)
.. code-block:: bash
# download and unpack the application
wget https://github.com/NetApp/trident/releases/download/v19.01.0/trident-installer-19.01.0.tar.gz
tar zxf trident-installer-19.01.0.tar.gz
wget https://github.com/NetApp/trident/releases/download/v19.04.0/trident-installer-19.04.0.tar.gz
tar zxf trident-installer-19.04.0.tar.gz
# move to a location in the bin path
sudo mv trident-installer/extras/bin/trident /usr/local/bin
Expand Down Expand Up @@ -266,7 +266,7 @@ Docker Managed Plugin Method (Docker >= 1.13 / 17.03)
.. code-block:: bash
docker plugin install --grant-all-permissions --alias netapp netapp/trident-plugin:19.01 config=myConfigFile.json
docker plugin install --grant-all-permissions --alias netapp netapp/trident-plugin:19.04 config=myConfigFile.json
#. Begin using Trident to consume storage from the configured system.
Expand Down
4 changes: 2 additions & 2 deletions docs/docker/install/multi_instance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ containerized plugin, or ``--volume-driver`` option when instantiating Trident o

.. code-block:: bash
docker plugin install --grant-all-permissions --alias silver netapp/trident-plugin:19.01 config=silver.json
docker plugin install --grant-all-permissions --alias silver netapp/trident-plugin:19.04 config=silver.json
#. Launch the second instance, specifying a different alias and configuration file

.. code-block:: bash
docker plugin install --grant-all-permissions --alias gold netapp/trident-plugin:19.01 config=gold.json
docker plugin install --grant-all-permissions --alias gold netapp/trident-plugin:19.04 config=gold.json
#. Create volumes specifying the alias as the driver name

Expand Down
2 changes: 1 addition & 1 deletion docs/docker/use/managing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ again. Under most circumstances, this is a matter of seconds.

.. code-block:: bash
docker plugin upgrade --skip-remote-check --grant-all-permissions netapp:latest netapp/trident-plugin:19.01
docker plugin upgrade --skip-remote-check --grant-all-permissions netapp:latest netapp/trident-plugin:19.04
.. note::

Expand Down
8 changes: 4 additions & 4 deletions docs/kubernetes/deploying.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ you have the necessary privileges to.
Download the latest version of the `Trident installer bundle`_ from the
*Downloads* section and extract it.

For example, if the latest version is 19.01.0:
For example, if the latest version is 19.04.0:

.. code-block:: console
wget https://github.com/NetApp/trident/releases/download/v19.01.0/trident-installer-19.01.0.tar.gz
tar -xf trident-installer-19.01.0.tar.gz
wget https://github.com/NetApp/trident/releases/download/v19.04.0/trident-installer-19.04.0.tar.gz
tar -xf trident-installer-19.04.0.tar.gz
cd trident-installer
.. _Trident installer bundle: https://github.com/NetApp/trident/releases/latest
Expand Down Expand Up @@ -167,7 +167,7 @@ It will look like this when the installer is complete:
+----------------+----------------+
| SERVER VERSION | CLIENT VERSION |
+----------------+----------------+
| 19.01.0 | 19.01.0 |
| 19.04.0 | 19.04.0 |
+----------------+----------------+
If that's what you see, you're done with this step, but **Trident is not
Expand Down
4 changes: 2 additions & 2 deletions docs/kubernetes/trident-csi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Invoke the install command with the ``--csi`` switch:
INFO Waiting for Trident pod to start.
INFO Trident pod started. namespace=trident pod=trident-csi-0
INFO Waiting for Trident REST interface.
INFO Trident REST interface is up. version=19.01.0
INFO Trident REST interface is up. version=19.04.0
INFO Trident installation succeeded.
It will look like this when the installer is complete:
Expand All @@ -69,7 +69,7 @@ It will look like this when the installer is complete:
+----------------+----------------+
| SERVER VERSION | CLIENT VERSION |
+----------------+----------------+
| 19.01.0 | 19.01.0 |
| 19.04.0 | 19.04.0 |
+----------------+----------------+
Using CSI Trident
Expand Down

0 comments on commit 48a864a

Please sign in to comment.