-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dell/csi-isilon: - 2.12.0 dell/csi-powermax: - 2.12.0 dell/csi-powerstore: - 2.12.0 dell/csi-unity: - 2.12.0 dell/csi-vxflexos: - 2.12.0 loft/loft: - 4.0.1 traefik/traefik: - 33.0.0 weka/csi-wekafsplugin: - 2.5.1
- Loading branch information
1 parent
fde4bea
commit 5af2d30
Showing
171 changed files
with
42,891 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
annotations: | ||
catalog.cattle.io/certified: partner | ||
catalog.cattle.io/display-name: Dell CSI PowerScale | ||
catalog.cattle.io/kube-version: '>= 1.21.0' | ||
catalog.cattle.io/release-name: isilon | ||
apiVersion: v2 | ||
appVersion: 2.12.0 | ||
description: 'PowerScale CSI (Container Storage Interface) driver Kubernetes integration. | ||
This chart includes everything required to provision via CSI as well as an Isilon | ||
StorageClass. ' | ||
icon: file://assets/icons/csi-isilon.png | ||
keywords: | ||
- csi | ||
- storage | ||
kubeVersion: '>= 1.21.0' | ||
maintainers: | ||
- name: DellEMC | ||
name: csi-isilon | ||
sources: | ||
- https://github.com/dell/csi-isilon | ||
type: application | ||
version: 2.12.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Prerequisites | ||
|
||
1. Create a namespace named isilon | ||
2. Create a secret named "isilon-creds" in the namespace created above. Sample [secret.yaml](https://github.com/dell/csi-powerscale/blob/main/samples/secret/secret.yaml). | ||
>Secret must be of type opaque. | ||
3. Create a secret named "Isilon-cert-0" in the namespace created above. Sample [empty-secret.yaml](https://github.com/dell/csi-powerscale/blob/main/samples/secret/empty-secret.yaml). | ||
>Secret must be of type opaque. | ||
4. Create storage classes using ones from [samples](https://github.com/dell/csi-powerscale/blob/main/samples/storageclass) folder as an example. | ||
5. Install the chart with the name "csi-islon". | ||
The table [here](https://github.com/dell/csi-powerscale/blob/main/helm/csi-isilon/values.yaml) lists the configurable parameters of the chart and their default values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{/* | ||
Return true if storage capacity tracking is enabled and is supported based on k8s version | ||
*/}} | ||
{{- define "csi-isilon.isStorageCapacitySupported" -}} | ||
{{- if eq .Values.storageCapacity.enabled true -}} | ||
{{- if and (eq .Capabilities.KubeVersion.Major "1") (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") -}} | ||
{{- true -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} |
Oops, something went wrong.