Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ephemeral suite ephemeral-config.properties format fix #1182

Merged
merged 2 commits into from
Jul 17, 2024
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
44 changes: 22 additions & 22 deletions content/docs/support/cert-csi/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -611,46 +611,46 @@ Sample ephemeral-config.properties (key/value pair)
{{% tab name="CSI PowerFlex" %}}

```yaml
volumeName: "my-ephemeral-vol"
size: "10Gi"
storagepool: "sample"
systemID: "sample"
volumeName=my-ephemeral-vol
size=10Gi
storagepool=sample
systemID=sample
```

{{% /tab %}}
{{% tab name="CSI PowerScale" %}}

```yaml
size: "10Gi"
ClusterName: "sample"
AccessZone: "sample"
IsiPath: "/ifs/data/sample"
IsiVolumePathPermissions: "0777"
AzServiceIP: "192.168.2.1"
size=10Gi
ClusterName=sample
AccessZone=sample
IsiPath=/ifs/data/sample
IsiVolumePathPermissions=0777
AzServiceIP=192.168.2.1
```

{{% /tab %}}
{{% tab name="CSI PowerStore" %}}

```yaml
size: "10Gi"
arrayID: "sample"
nasName: "sample"
nfsAcls: "0777"
size=10Gi
arrayID=sample
nasName=sample
nfsAcls=0777
```

{{% /tab %}}
{{% tab name="CSI Unity" %}}

```yaml
size: "10Gi"
arrayID: "sample"
protocol: iSCSI
thinProvisioned: "true"
isDataReductionEnabled: "false"
tieringPolicy: "1"
storagePool: pool_2
nasName: "sample"
size=10Gi
arrayId=sample
protocol=iSCSI
thinProvisioned=true
isDataReductionEnabled=false
tieringPolicy=1
storagePool=pool_2
nasName=sample
```

{{% /tab %}}
Expand Down
45 changes: 23 additions & 22 deletions content/v1/csidriver/installation/test/certcsi.md
Original file line number Diff line number Diff line change
Expand Up @@ -603,51 +603,52 @@ Sample ephemeral-config.properties (key/value pair)
{{% tab name="CSI PowerFlex" %}}

```yaml
volumeName: "my-ephemeral-vol"
size: "10Gi"
storagepool: "sample"
systemID: "sample"
volumeName=my-ephemeral-vol
size=10Gi
storagepool=sample
systemID=sample
```

{{% /tab %}}
{{% tab name="CSI PowerScale" %}}

```yaml
size: "10Gi"
ClusterName: "sample"
AccessZone: "sample"
IsiPath: "/ifs/data/sample"
IsiVolumePathPermissions: "0777"
AzServiceIP: "192.168.2.1"
size=10Gi
ClusterName=sample
AccessZone=sample
IsiPath=/ifs/data/sample
IsiVolumePathPermissions=0777
AzServiceIP=192.168.2.1
```

{{% /tab %}}
{{% tab name="CSI PowerStore" %}}

```yaml
size: "10Gi"
arrayID: "sample"
nasName: "sample"
nfsAcls: "0777"
size=10Gi
arrayID=sample
nasName=sample
nfsAcls=0777
```

{{% /tab %}}
{{% tab name="CSI Unity" %}}

```yaml
size: "10Gi"
arrayID: "sample"
protocol: iSCSI
thinProvisioned: "true"
isDataReductionEnabled: "false"
tieringPolicy: "1"
storagePool: pool_2
nasName: "sample"
size=10Gi
arrayId=sample
protocol=iSCSI
thinProvisioned=true
isDataReductionEnabled=false
tieringPolicy=1
storagePool=pool_2
nasName=sample
```

{{% /tab %}}
{{< /tabs >}}


#### Storage Capacity Tracking
1. Creates namespace `functional-test` where resources will be created.
2. Creates a duplicate of the provided storge class using prefix `capacity-tracking`.
Expand Down
Loading