Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ LABEL vendor="Dell Technologies" \
name="csi-powerstore" \
summary="CSI Driver for Dell EMC PowerStore" \
description="CSI Driver for provisioning persistent storage from Dell EMC PowerStore" \
release="1.14.0" \
version="2.14.0" \
release="1.15.0" \
version="2.15.0" \
license="Apache-2.0"
COPY licenses /licenses

Expand Down
2 changes: 1 addition & 1 deletion core/semver/semver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func TestMainFunction(t *testing.T) {

oldDoExec := doExec
doExec = func(_ string, _ ...string) ([]byte, error) {
return []byte("v2.14.0-77-g38b3a19-dirty"), nil
return []byte("v2.15.0-77-g38b3a19-dirty"), nil
}

main()
Expand Down
4 changes: 2 additions & 2 deletions dell-csi-helm-installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This project provides the following capabilitites, each one is discussed in deta


Most of these usages require the creation/specification of a values file. These files specify configuration settings that are passed into the driver and configure it for use. To create one of these files, the following steps should be followed:
1. Download a template file for the driver to a new location, naming this new file is at the users discretion. The template files are always found at `https://github.com/dell/helm-charts/raw/csi-powerstore-2.14.0/charts/csi-powerstore/values.yaml`
1. Download a template file for the driver to a new location, naming this new file is at the users discretion. The template files are always found at `https://github.com/dell/helm-charts/raw/csi-powerstore-2.15.0/charts/csi-powerstore/values.yaml`
2. Edit the file such that it contains the proper configuration settings for the specific environment. These files are yaml formatted so maintaining the file structure is important.

For example, to create a values file for the PowerStore driver the following steps can be executed
Expand All @@ -45,7 +45,7 @@ For example, to create a values file for the PowerStore driver the following ste
cd dell-csi-helm-installer

# download the template file
wget -O my-powerstore-settings.yaml https://github.com/dell/helm-charts/raw/csi-powerstore-2.14.0/charts/csi-powerstore/values.yaml
wget -O my-powerstore-settings.yaml https://github.com/dell/helm-charts/raw/csi-powerstore-2.15.0/charts/csi-powerstore/values.yaml

# edit the newly created values file
vi my-powerstore-settings.yaml
Expand Down
4 changes: 2 additions & 2 deletions dell-csi-helm-installer/csi-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
DRIVERDIR="${SCRIPTDIR}/../"
HELMCHARTVERSION="csi-powerstore-2.14.0"
HELMCHARTVERSION="csi-powerstore-2.15.0"
DRIVER="csi-powerstore"
VERIFYSCRIPT="${SCRIPTDIR}/verify.sh"
PROG="${0}"
NODE_VERIFY=1
VERIFY=1
MODE="install"
DEFAULT_DRIVER_VERSION="v2.14.0"
DEFAULT_DRIVER_VERSION="v2.15.0"
WATCHLIST=""

# export the name of the debug log, so child processes will see it
Expand Down
10 changes: 5 additions & 5 deletions dell-csi-helm-installer/csi-offline-bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ For example, here is the output of a request to build an offline bundle for the
*
* Pulling and saving container images

quay.io/dell/container-storage-module/csi-isilon:v2.14.0
quay.io/dell/container-storage-module/csi-isilon:v2.15.0
quay.io/dell/container-storage-module/csi-metadata-retriever:v1.10.0
quay.io/dell/container-storage-module/csipowermax-reverseproxy:v2.13.0
quay.io/dell/container-storage-module/csi-powermax:v2.14.0
quay.io/dell/container-storage-module/csi-powerstore:v2.14.0
quay.io/dell/container-storage-module/csi-unity:v2.14.0
quay.io/dell/container-storage-module/csi-vxflexos:v2.14.0
quay.io/dell/container-storage-module/csi-powermax:v2.15.0
quay.io/dell/container-storage-module/csi-powerstore:v2.15.0
quay.io/dell/container-storage-module/csi-unity:v2.15.0
quay.io/dell/container-storage-module/csi-vxflexos:v2.15.0
quay.io/dell/container-storage-module/csm-authorization-sidecar:v1.14.0
quay.io/dell/container-storage-module/csm-metrics-powerflex:v1.12.0
quay.io/dell/container-storage-module/csm-metrics-powerscale:v1.9.0
Expand Down
2 changes: 1 addition & 1 deletion dell-csi-helm-installer/csi-offline-bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ PREPARE="false"
REGISTRY=""
NIGHTLY="false"
DRIVER="csi-powerstore"
HELMCHARTVERSION="csi-powerstore-2.14.0"
HELMCHARTVERSION="csi-powerstore-2.15.0"

while getopts "cprnv:h" opt; do
case $opt in
Expand Down
Loading