Skip to content

Commit

Permalink
Added chart versions:
Browse files Browse the repository at this point in the history
  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
github-actions[bot] committed Oct 31, 2024
1 parent fde4bea commit 5af2d30
Show file tree
Hide file tree
Showing 171 changed files with 42,891 additions and 1 deletion.
Binary file added assets/dell/csi-isilon-2.12.0.tgz
Binary file not shown.
Binary file added assets/dell/csi-powermax-2.12.0.tgz
Binary file not shown.
Binary file added assets/dell/csi-powerstore-2.12.0.tgz
Binary file not shown.
Binary file added assets/dell/csi-unity-2.12.0.tgz
Binary file not shown.
Binary file added assets/dell/csi-vxflexos-2.12.0.tgz
Binary file not shown.
Binary file added assets/loft/loft-4.0.1.tgz
Binary file not shown.
Binary file added assets/traefik/traefik-33.0.0.tgz
Binary file not shown.
Binary file added assets/weka/csi-wekafsplugin-2.5.1.tgz
Binary file not shown.
22 changes: 22 additions & 0 deletions charts/dell/csi-isilon/2.12.0/Chart.yaml
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
10 changes: 10 additions & 0 deletions charts/dell/csi-isilon/2.12.0/app-readme.md
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
10 changes: 10 additions & 0 deletions charts/dell/csi-isilon/2.12.0/templates/_helpers.tpl
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 -}}
Loading

0 comments on commit 5af2d30

Please sign in to comment.