Skip to content

Commit

Permalink
csm 1.10.2 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhatdell committed May 10, 2024
1 parent a53d651 commit 937fb45
Show file tree
Hide file tree
Showing 35 changed files with 130 additions and 130 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ enable = false
# icon = "fa fa-envelope"
# desc = "Discuss development issues around the project"
[[params.versions]]
version = "Current(v1.10.1)"
version = "Current(v1.10.2)"
url = "https://dell.github.io/csm-docs/docs/"

[[params.versions]]
Expand Down
2 changes: 1 addition & 1 deletion content/docs/authorization/release/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Description: >
Dell Container Storage Modules (CSM) release notes for authorization
---

## Release Notes - CSM Authorization 1.10.0
## Release Notes - CSM Authorization 1.10.1



Expand Down
32 changes: 16 additions & 16 deletions content/docs/cert-csi/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,28 @@ There are three methods of installing `cert-csi`.
1. Download the latest release of the cert-csi zip file.

```bash
curl -LO https://github.com/dell/cert-csi/releases/download/v1.3.1/cert-csi-v1.3.1.zip
curl -LO https://github.com/dell/cert-csi/releases/download/v1.4.1/cert-csi-v1.4.1.zip
```

2. Unzip the file.

``` bash
unzip cert-csi-v1.3.1.zip
chmod +x ./cert-csi-v1.3.1
unzip cert-csi-v1.4.1.zip
chmod +x ./cert-csi-v1.4.1
```

3. Install cert-csi-v1.3.1 as cert-csi.
3. Install cert-csi-v1.4.1 as cert-csi.

```bash
sudo install -o root -g root -m 0755 cert-csi-v1.3.1 /usr/local/bin/cert-csi
sudo install -o root -g root -m 0755 cert-csi-v1.4.1 /usr/local/bin/cert-csi
```

If you do not have root access on the target system, you can still install cert-csi to the ~/.local/bin directory:

```bash
chmod +x cert-csi-v1.3.1
chmod +x cert-csi-v1.4.1
mkdir -p ~/.local/bin
mv ./cert-csi-v1.3.1 ~/.local/bin/cert-csi
mv ./cert-csi-v1.4.1 ~/.local/bin/cert-csi
# and then append (or prepend) ~/.local/bin to $PATH
```

Expand All @@ -61,14 +61,14 @@ mv ./cert-csi-v1.3.1 ~/.local/bin/cert-csi
{{% tab name="Docker" %}}

```bash
docker pull dellemc/cert-csi:v1.3.1
docker pull dellemc/cert-csi:v1.4.1
```

{{% /tab %}}
{{% tab name="Podman" %}}

```bash
podman pull dellemc/cert-csi:v1.3.1
podman pull dellemc/cert-csi:v1.4.1
```

{{% /tab %}}
Expand All @@ -83,7 +83,7 @@ mv ./cert-csi-v1.3.1 ~/.local/bin/cert-csi
1. Clone the repository

```bash
git clone -b "v1.3.1" https://github.com/dell/cert-csi.git && cd cert-csi
git clone -b "v1.4.1" https://github.com/dell/cert-csi.git && cd cert-csi
```

2. Build cert-csi
Expand Down Expand Up @@ -125,12 +125,12 @@ make install-ms
{{% /tab %}}
{{% tab name="Docker" %}}
```bash
docker run --rm -it -v ~/.kube/config:/root/.kube/config dellemc/cert-csi:v1.3.1 --help
docker run --rm -it -v ~/.kube/config:/root/.kube/config dellemc/cert-csi:v1.4.1 --help
```
{{% /tab %}}
{{% tab name="Podman" %}}
```bash
podman run --rm -it -v ~/.kube/config:/root/.kube/config dellemc/cert-csi:v1.3.1 --help
podman run --rm -it -v ~/.kube/config:/root/.kube/config dellemc/cert-csi:v1.4.1 --help
```

{{% /tab %}}
Expand Down Expand Up @@ -397,12 +397,12 @@ If you are using the container image, the `cert-config` file must be mounted int
{{< tabs name="running-container-certify" >}}
{{% tab name="Docker" %}}
```bash
docker run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/example-certify-config.yaml:/example-certify-config.yaml dellemc/cert-csi:v1.3.1 certify --cert-config /example-certify-config.yaml --vsc <volume-snapshot-class>
docker run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/example-certify-config.yaml:/example-certify-config.yaml dellemc/cert-csi:v1.4.1 certify --cert-config /example-certify-config.yaml --vsc <volume-snapshot-class>
```
{{% /tab %}}
{{% tab name="Podman" %}}
```bash
podman run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/example-certify-config.yaml:/example-certify-config.yaml dellemc/cert-csi:v1.3.1 certify --cert-config /example-certify-config.yaml --vsc <volume-snapshot-class>
podman run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/example-certify-config.yaml:/example-certify-config.yaml dellemc/cert-csi:v1.4.1 certify --cert-config /example-certify-config.yaml --vsc <volume-snapshot-class>
```
{{% /tab %}}
Expand Down Expand Up @@ -595,12 +595,12 @@ If you are using the container image, the `attr` file must be mounted into the c
{{< tabs name="running-container-ephemeral-volume" >}}
{{% tab name="Docker" %}}
```bash
docker run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/ephemeral-config.properties:/ephemeral-config.properties dellemc/cert-csi:v1.3.1 test ephemeral-volume --driver <driver-name> --attr /ephemeral-config.properties
docker run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/ephemeral-config.properties:/ephemeral-config.properties dellemc/cert-csi:v1.4.1 test ephemeral-volume --driver <driver-name> --attr /ephemeral-config.properties
```
{{% /tab %}}
{{% tab name="Podman" %}}
```bash
podman run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/ephemeral-config.properties:/ephemeral-config.properties dellemc/cert-csi:v1.3.1 test ephemeral-volume --driver <driver-name> --attr /ephemeral-config.properties
podman run --rm -it -v ~/.kube/config:/root/.kube/config -v /home/user/ephemeral-config.properties:/ephemeral-config.properties dellemc/cert-csi:v1.4.1 test ephemeral-volume --driver <driver-name> --attr /ephemeral-config.properties
```
{{% /tab %}}
Expand Down
2 changes: 1 addition & 1 deletion content/docs/cosidriver/release/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ weight: 6
description: Release Notes for COSI Driver
---

## Release Notes - COSI Driver v0.1.1
## Release Notes - COSI Driver v0.2.1



Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The CSI Drivers by Dell implement an interface between [CSI](https://kubernetes-
{{<table "table table-striped table-bordered table-sm">}}
| Features | PowerMax | PowerFlex | Unity XT | PowerScale | PowerStore |
|--------------------------|:--------:|:---------:|:---------:|:----------:|:----------:|
| CSI Driver version | 2.10.0 | 2.10.0 | 2.10.0 | 2.10.0 | 2.10.0 |
| CSI Driver version | 2.10.1 | 2.10.1 | 2.10.1 | 2.10.1 | 2.10.1 |
| Static Provisioning | yes | yes | yes | yes | yes |
| Dynamic Provisioning | yes | yes | yes | yes | yes |
| Expand Persistent Volume | yes | yes | yes | yes | yes |
Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/release/powerflex.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PowerFlex
description: Release notes for PowerFlex CSI driver
---

## Release Notes - CSI PowerFlex v2.10.0
## Release Notes - CSI PowerFlex v2.10.1



Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/release/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PowerMax
description: Release notes for PowerMax CSI driver
---

## Release Notes - CSI PowerMax v2.10.0
## Release Notes - CSI PowerMax v2.10.1

>Note: Auto SRDF group creation is currently not supported in PowerMaxOS 10.1 (6079) Arrays.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/release/powerscale.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Release notes for PowerScale CSI driver
---


## Release Notes - CSI Driver for PowerScale v2.10.0
## Release Notes - CSI Driver for PowerScale v2.10.1



Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/release/powerstore.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PowerStore
description: Release notes for PowerStore CSI driver
---

## Release Notes - CSI PowerStore v2.10.0
## Release Notes - CSI PowerStore v2.10.1



Expand Down
2 changes: 1 addition & 1 deletion content/docs/csidriver/release/unity.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Unity XT
description: Release notes for Unity XT CSI driver
---

## Release Notes - CSI Unity XT v2.10.0
## Release Notes - CSI Unity XT v2.10.1



Expand Down
10 changes: 5 additions & 5 deletions content/docs/deployment/csminstallationwizard/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ The [Dell Container Storage Modules Installation Wizard](./src/index.html) is a

| CSI Driver | Version | Helm | Operator |
| ------------------ | --------- | ------ | --------- |
| CSI PowerStore | 2.10.0 |✔️ |✔️ |
| CSI PowerStore | 2.10.1 |✔️ |✔️ |
| CSI PowerStore | 2.9.0 |✔️ |✔️ |
| CSI PowerStore | 2.8.0 |✔️ |✔️ |
| CSI PowerStore | 2.7.0 |✔️ |✔️ |
| CSI PowerMax | 2.10.0 |✔️ |✔️ |
| CSI PowerMax | 2.10.1 |✔️ |✔️ |
| CSI PowerMax | 2.9.0 |✔️ |✔️ |
| CSI PowerMax | 2.8.0 |✔️ |✔️ |
| CSI PowerMax | 2.8.0 |✔️ |✔️ |
| CSI PowerFlex | 2.10.0 |✔️ ||
| CSI PowerFlex | 2.10.1 |✔️ ||
| CSI PowerFlex | 2.9.0 |✔️ ||
| CSI PowerFlex | 2.8.0 |✔️ ||
| CSI PowerFlex | 2.7.0 |✔️ ||
| CSI PowerScale | 2.10.0 |✔️ |✔️ |
| CSI PowerScale | 2.10.1 |✔️ |✔️ |
| CSI PowerScale | 2.9.0 |✔️ |✔️ |
| CSI PowerScale | 2.8.0 |✔️ |✔️ |
| CSI PowerScale | 2.7.0 |✔️ |✔️ |
| CSI Unity XT | 2.10.0 |✔️ ||
| CSI Unity XT | 2.10.1 |✔️ ||
| CSI Unity XT | 2.9.0 |✔️ ||
| CSI Unity XT | 2.8.0 |✔️ ||
| CSI Unity XT | 2.7.0 |✔️ ||
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
csmVersion=1.10.1
csmVersion=1.10.2
imageRepository=dellemc
controllerCount=1
nodeSelectorLabel=node-role.kubernetes.io/control-plane:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<option value="1.7.0">CSM 1.7</option>
<option value="1.8.0">CSM 1.8</option>
<option value="1.9.3">CSM 1.9</option>
<option value="1.10.1" selected>CSM 1.10.1</option>
<option value="1.10.2" selected>CSM 1.10.2</option>
</select>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CONSTANTS = {
CSM_HELM_V170: "1.0.0",
CSM_HELM_V180: "1.1.0",
CSM_HELM_V190: "1.2.1",
CSM_HELM_V1101: "1.3.1",
CSM_HELM_V1102: "1.3.2",
HELM_TAINTS: `
- key: "$KEY"
operator: "Exists"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -472,11 +472,11 @@ function displayCommands(releaseNameValue, commandTitleValue, commandNoteValue,
case "1.9.3":
helmChartVersion = CONSTANTS.CSM_HELM_V193;
break;
case "1.10.1":
helmChartVersion = CONSTANTS.CSM_HELM_V1101;
case "1.10.2":
helmChartVersion = CONSTANTS.CSM_HELM_V1102;
break;
default:
helmChartVersion = CONSTANTS.CSM_HELM_V1101;
helmChartVersion = CONSTANTS.CSM_HELM_V1102;
break;
}
$("#command-text-area").show();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
##########################################
csi-powerstore:
enabled: $POWERSTORE_ENABLED
version: v2.10.0
version: v2.10.1
images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-powerstore:v2.10.0
driver: dellemc/csi-powerstore:v2.10.1
# CSI sidecars
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.5.0
provisioner: registry.k8s.io/sig-storage/csi-provisioner:v4.0.0
Expand Down Expand Up @@ -114,10 +114,10 @@ csi-powermax:
managementServers:
- endpoint: $POWERMAX_MANAGEMENT_SERVERS_ENDPOINT_URL
- endpoint: $TARGET_UNISPHERE
version: v2.10.0
version: v2.10.1
images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-powermax:v2.10.0
driver: dellemc/csi-powermax:v2.10.1
csireverseproxy: dellemc/csipowermax-reverseproxy:v2.9.0
# CSI sidecars
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.5.0
Expand Down Expand Up @@ -190,10 +190,10 @@ csi-powermax:
##########################################
csi-vxflexos:
enabled: $POWERFLEX_ENABLED
version: v2.10.0
version: v2.10.1
images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-vxflexos:v2.10.0
driver: dellemc/csi-vxflexos:v2.10.1
# "powerflexSdc" defines the SDC image for init container.
powerflexSdc: dellemc/sdc:4.5
# CSI sidecars
Expand Down Expand Up @@ -289,10 +289,10 @@ csi-vxflexos:
##########################################
csi-isilon:
enabled: $POWERSCALE_ENABLED
version: "v2.10.0"
version: "v2.10.1"
images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-isilon:v2.10.0
driver: dellemc/csi-isilon:v2.10.1
# CSI sidecars
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.5.0
provisioner: registry.k8s.io/sig-storage/csi-provisioner:v4.0.0
Expand Down Expand Up @@ -399,10 +399,10 @@ csi-isilon:
##########################################
csi-unity:
enabled: $UNITY_ENABLED
version: v2.10.0
version: v2.10.1
images:
# "driver" defines the container image, used for the driver container.
driver: dellemc/csi-unity:v2.10.0
driver: dellemc/csi-unity:v2.10.1
# CSI sidecars
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.5.0
provisioner: registry.k8s.io/sig-storage/csi-provisioner:v4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ spec:
# true: enable storage capacity tracking
# false: disable storage capacity tracking
storageCapacity: $STORAGE_CAPACITY_ENABLED
# Config version for CSI PowerScale v2.10.0 driver
configVersion: v2.10.0
# Config version for CSI PowerScale v2.10.1 driver
configVersion: v2.10.1
authSecret: isilon-creds
replicas: $CONTROLLER_COUNT
dnsPolicy: ClusterFirstWithHostNet
# Uninstall CSI Driver and/or modules when CR is deleted
forceRemoveDriver: true
common:
# Image for CSI PowerScale driver v2.10.0
image: "dellemc/csi-isilon:v2.10.0"
# Image for CSI PowerScale driver v2.10.1
image: "dellemc/csi-isilon:v2.10.1"
imagePullPolicy: IfNotPresent
envs:
# X_CSI_VERBOSE: Indicates what content of the OneFS REST API message should be logged in debug level logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ spec:
# true: enable storage capacity tracking
# false: disable storage capacity tracking
storageCapacity: $STORAGE_CAPACITY_ENABLED
# Config version for CSI PowerMax v2.10.0 driver
configVersion: v2.10.0
# Config version for CSI PowerMax v2.10.1 driver
configVersion: v2.10.1
# replica: Define the number of PowerMax controller nodes
# to deploy to the Kubernetes release
# Allowed values: n, where n > 0
Expand All @@ -44,8 +44,8 @@ spec:
forceUpdate: false
forceRemoveDriver: true
common:
# Image for CSI PowerMax driver v2.10.0
image: dellemc/csi-powermax:v2.10.0
# Image for CSI PowerMax driver v2.10.1
image: dellemc/csi-powermax:v2.10.1
# imagePullPolicy: Policy to determine if the image should be pulled prior to starting the container.
# Allowed values:
# Always: Always pull the image.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ spec:
# true: enable storage capacity tracking
# false: disable storage capacity tracking
storageCapacity: $STORAGE_CAPACITY_ENABLED
# Config version for CSI PowerStore v2.10.0 driver
configVersion: v2.10.0
# Config version for CSI PowerStore v2.10.1 driver
configVersion: v2.10.1
# authSecret: This is the secret used to validate the default PowerStore secret used for installation
# Allowed values: <metadataName specified in the Manifest>-config
# For example: If the metadataName is set to powerstore, authSecret value should be set to powerstore-config
Expand All @@ -43,8 +43,8 @@ spec:
forceUpdate: false
forceRemoveDriver: true
common:
# Image for CSI PowerStore driver v2.10.0
image: "dellemc/csi-powerstore:v2.10.0"
# Image for CSI PowerStore driver v2.10.1
image: "dellemc/csi-powerstore:v2.10.1"
imagePullPolicy: IfNotPresent
envs:
- name: X_CSI_POWERSTORE_NODE_NAME_PREFIX
Expand Down
Loading

0 comments on commit 937fb45

Please sign in to comment.