-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Mattsson <[email protected]>
- Loading branch information
1 parent
2268848
commit 493123d
Showing
18 changed files
with
6,109 additions
and
18 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -147,6 +147,44 @@ entries: | |
- hpe-array-exporter-1.0.0-beta.tgz | ||
version: 1.0.0-beta | ||
hpe-csi-driver: | ||
- annotations: | ||
artifacthub.io/category: storage | ||
artifacthub.io/containsSecurityUpdates: "true" | ||
artifacthub.io/license: Apache-2.0 | ||
artifacthub.io/links: | | ||
- name: Release Highlights | ||
url: https://scod.hpedev.io/csi_driver/index.html#latest_release | ||
- name: Release Notes | ||
url: https://github.com/hpe-storage/csi-driver/tree/master/release-notes | ||
- name: Documentation | ||
url: https://scod.hpedev.io/csi_driver | ||
- name: Chart Source | ||
url: https://github.com/hpe-storage/co-deployments | ||
artifacthub.io/prerelease: "false" | ||
artifacthub.io/recommendations: | | ||
- url: https://artifacthub.io/packages/olm/community-operators/hpe-csi-operator | ||
- url: https://artifacthub.io/packages/helm/hpe-storage/hpe-csi-info-metrics | ||
- url: https://artifacthub.io/packages/helm/hpe-storage/hpe-array-exporter | ||
apiVersion: v1 | ||
appVersion: 2.5.0 | ||
created: "2024-07-25T09:09:41.440784-07:00" | ||
description: A Helm chart for installing the HPE CSI Driver for Kubernetes | ||
digest: 108aaa715e0a53515d266ee76db3b794cb6b28b7c9de0d07710f496db092e55e | ||
home: https://hpe.com/storage/containers | ||
icon: https://raw.githubusercontent.com/hpe-storage/co-deployments/master/docs/assets/hpedev.png | ||
keywords: | ||
- HPE | ||
- Storage | ||
- CSI | ||
maintainers: | ||
- email: [email protected] | ||
name: datamattsson | ||
name: hpe-csi-driver | ||
sources: | ||
- https://github.com/hpe-storage/csi-driver | ||
urls: | ||
- hpe-csi-driver-2.5.0.tgz | ||
version: 2.5.0 | ||
- annotations: | ||
artifacthub.io/category: storage | ||
artifacthub.io/containsSecurityUpdates: "true" | ||
|
@@ -1299,4 +1337,4 @@ entries: | |
urls: | ||
- hpe-flexvolume-driver-3.0.0.tgz | ||
version: 3.0.0 | ||
generated: "2024-07-15T22:48:54.683827-07:00" | ||
generated: "2024-07-25T09:09:41.439654-07:00" |
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
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
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,119 @@ | ||
# Default values for hpe-csi-driver Helm chart | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
# Control CSP Service and Deployments for HPE storage products | ||
disable: | ||
nimble: false | ||
primera: false | ||
alletra6000: false | ||
alletra9000: false | ||
alletraStorageMP: false | ||
|
||
# For controlling automatic iscsi/multipath package installation | ||
disableNodeConformance: false | ||
|
||
# For controlling automatic iscsi/multipath service configuration | ||
disableNodeConfiguration: false | ||
|
||
# NodeGetVolumestats will be called by default, set true to disable the call | ||
disableNodeGetVolumeStats: false | ||
|
||
# The Node Monitor ensure the node has no stale storage resources attached | ||
disableNodeMonitor: false | ||
|
||
# Disables host deletion by the CSP when no volumes are associated with the host | ||
disableHostDeletion: false | ||
|
||
# imagePullPolicy applied for all hpe-csi-driver images | ||
imagePullPolicy: "IfNotPresent" | ||
|
||
# Cluster wide values for CHAP authentication | ||
iscsi: | ||
chapSecretName: "" | ||
|
||
# Log level for all hpe-csi-driver components | ||
logLevel: "info" | ||
|
||
# Kubelet root directory path | ||
kubeletRootDir: "/var/lib/kubelet" | ||
|
||
controller: | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
labels: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
nodeSelector: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
tolerations: [] | ||
|
||
affinity: {} | ||
|
||
resources: | ||
limits: | ||
cpu: 2000m | ||
memory: 1Gi | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
|
||
csp: | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
labels: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
nodeSelector: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
tolerations: [] | ||
|
||
affinity: {} | ||
|
||
resources: | ||
limits: | ||
cpu: 2000m | ||
memory: 1Gi | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
|
||
node: | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
labels: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
nodeSelector: {} | ||
|
||
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info | ||
tolerations: [] | ||
|
||
affinity: {} | ||
|
||
resources: | ||
limits: | ||
cpu: 2000m | ||
memory: 1Gi | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
|
||
# Release images | ||
images: | ||
csiNodeDriver: quay.io/hpestorage/csi-driver:v2.5.0 | ||
csiControllerDriver: quay.io/hpestorage/csi-driver:v2.5.0 | ||
nimbleCSP: quay.io/hpestorage/alletra-6000-and-nimble-csp:v2.5.0 | ||
primera3parCSP: quay.io/hpestorage/alletra-9000-primera-and-3par-csp:v2.5.0 | ||
nfsProvisioner: quay.io/hpestorage/nfs-provisioner:v3.0.5 | ||
csiExtensions: quay.io/hpestorage/csi-extensions:v1.2.7 | ||
csiVolumeGroupProvisioner: quay.io/hpestorage/volume-group-provisioner:v1.0.6 | ||
csiVolumeGroupSnapshotter: quay.io/hpestorage/volume-group-snapshotter:v1.0.6 | ||
csiVolumeMutator: quay.io/hpestorage/volume-mutator:v1.3.6 | ||
csiAttacher: registry.k8s.io/sig-storage/csi-attacher:v4.6.1 | ||
csiNodeDriverRegistrar: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.10.1 | ||
csiProvisioner: registry.k8s.io/sig-storage/csi-provisioner:v5.0.1 | ||
csiResizer: registry.k8s.io/sig-storage/csi-resizer:v1.11.1 | ||
csiSnapshotter: registry.k8s.io/sig-storage/csi-snapshotter:v8.0.1 |
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
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
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
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
Oops, something went wrong.