-
Notifications
You must be signed in to change notification settings - Fork 9
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
aa5e623
commit ecebf8a
Showing
41 changed files
with
192 additions
and
2,522 deletions.
There are no files selected for viewing
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,3 @@ | ||
e2e/e2e.test | ||
e2e/ginkgo | ||
e2e/reports/ |
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,25 @@ | ||
--- | ||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
metadata: | ||
annotations: | ||
storageclass.kubernetes.io/is-default-class: "false" | ||
name: hpe-standard-nfs | ||
provisioner: csi.hpe.com | ||
parameters: | ||
csi.storage.k8s.io/controller-expand-secret-name: truenas-secret | ||
csi.storage.k8s.io/controller-expand-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/controller-publish-secret-name: truenas-secret | ||
csi.storage.k8s.io/controller-publish-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/node-publish-secret-name: truenas-secret | ||
csi.storage.k8s.io/node-publish-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/node-stage-secret-name: truenas-secret | ||
csi.storage.k8s.io/node-stage-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/provisioner-secret-name: truenas-secret | ||
csi.storage.k8s.io/provisioner-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/fstype: xfs | ||
nfsResources: "true" | ||
allowOverrides: sparse,compression,deduplication,volblocksize,sync,description | ||
root: zwimming/csi-volumes | ||
reclaimPolicy: Delete | ||
allowVolumeExpansion: true |
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,24 @@ | ||
--- | ||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
metadata: | ||
annotations: | ||
storageclass.kubernetes.io/is-default-class: "true" | ||
name: hpe-standard | ||
provisioner: csi.hpe.com | ||
parameters: | ||
csi.storage.k8s.io/controller-expand-secret-name: truenas-secret | ||
csi.storage.k8s.io/controller-expand-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/controller-publish-secret-name: truenas-secret | ||
csi.storage.k8s.io/controller-publish-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/node-publish-secret-name: truenas-secret | ||
csi.storage.k8s.io/node-publish-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/node-stage-secret-name: truenas-secret | ||
csi.storage.k8s.io/node-stage-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/provisioner-secret-name: truenas-secret | ||
csi.storage.k8s.io/provisioner-secret-namespace: hpe-storage | ||
csi.storage.k8s.io/fstype: xfs | ||
allowOverrides: sparse,compression,deduplication,volblocksize,sync,description | ||
root: zwimming/csi-volumes | ||
reclaimPolicy: Delete | ||
allowVolumeExpansion: true |
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,38 @@ | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: truenas-csp-svc | ||
namespace: hpe-storage | ||
labels: | ||
app: truenas-csp-svc | ||
spec: | ||
ports: | ||
- port: 8080 | ||
protocol: TCP | ||
selector: | ||
app: truenas-csp | ||
|
||
--- | ||
kind: Deployment | ||
apiVersion: apps/v1 | ||
metadata: | ||
name: truenas-csp | ||
namespace: hpe-storage | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: truenas-csp | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app: truenas-csp | ||
spec: | ||
priorityClassName: system-cluster-critical | ||
containers: | ||
- name: truenas-csp | ||
image: quay.io/datamattsson/truenas-csp:v2.1.0 | ||
imagePullPolicy: IfNotPresent | ||
ports: | ||
- containerPort: 8080 |
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,12 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: truenas-secret | ||
namespace: hpe-storage | ||
stringData: | ||
serviceName: truenas-csp-svc | ||
servicePort: "8080" | ||
username: hpe-csi (username is a no-op) | ||
password: API key or root password of TrueNAS/FreeNAS appliance | ||
backend: Management IP address of TrueNAS/FreeNAS appliance |
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 |
---|---|---|
@@ -1,6 +1,39 @@ | ||
apiVersion: v1 | ||
entries: | ||
truenas-csp: | ||
- annotations: | ||
artifacthub.io/license: MIT | ||
artifacthub.io/links: | | ||
- name: HPE CSI Driver for Kubernetes | ||
url: https://scod.hpedev.io | ||
- name: Install | ||
url: https://github.com/hpe-storage/truenas-csp/blob/master/INSTALL.md | ||
artifacthub.io/prerelease: "false" | ||
apiVersion: v2 | ||
appVersion: 2.1.0 | ||
created: "2022-01-30T18:45:32.690972362-08:00" | ||
dependencies: | ||
- name: hpe-csi-driver | ||
repository: https://hpe-storage.github.io/co-deployments | ||
version: 2.1.0 | ||
description: TrueNAS Container Storage Provider Helm chart for Kubernetes | ||
digest: aaad3b72c7101dcbfbb3f4af61229979b76eeb938cb69cd1c79b8a5e5c13c005 | ||
home: https://github.com/hpe-storage/truenas-csp | ||
icon: https://hpe-storage.github.io/truenas-csp/assets/icon.svg | ||
keywords: | ||
- HPE | ||
- Storage | ||
- CSI | ||
maintainers: | ||
- email: [email protected] | ||
name: Michael Mattsson | ||
name: truenas-csp | ||
sources: | ||
- https://github.com/hpe-storage/truenas-csp | ||
type: application | ||
urls: | ||
- truenas-csp-1.1.0.tgz | ||
version: 1.1.0 | ||
- annotations: | ||
artifacthub.io/license: MIT | ||
artifacthub.io/links: | | ||
|
@@ -34,4 +67,4 @@ entries: | |
urls: | ||
- truenas-csp-1.0.0.tgz | ||
version: 1.0.0 | ||
generated: "2021-10-02T10:25:01.732126837-07:00" | ||
generated: "2022-01-30T18:45:32.68959745-08:00" |
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
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,6 @@ | ||
dependencies: | ||
- name: hpe-csi-driver | ||
repository: https://hpe-storage.github.io/co-deployments | ||
version: 2.1.0 | ||
digest: sha256:5e423cd86a91d6d5fc5f8314e192b76464615bb56f11618b4c29d406397d34c4 | ||
generated: "2022-01-30T16:20:09.63119967-08: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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
apiVersion: v2 | ||
name: truenas-csp | ||
type: application | ||
description: TrueNAS CORE Container Storage Provider Helm chart for Kubernetes | ||
description: TrueNAS Container Storage Provider Helm chart for Kubernetes | ||
icon: https://hpe-storage.github.io/truenas-csp/assets/icon.svg | ||
annotations: | ||
artifacthub.io/license: MIT | ||
|
@@ -11,9 +11,9 @@ annotations: | |
url: https://scod.hpedev.io | ||
- name: Install | ||
url: https://github.com/hpe-storage/truenas-csp/blob/master/INSTALL.md | ||
artifacthub.io/prerelease: "true" | ||
version: "1.0.0" | ||
appVersion: "2.0.0" | ||
artifacthub.io/prerelease: "false" | ||
version: "1.1.0" | ||
appVersion: "2.1.0" | ||
maintainers: | ||
- name: Michael Mattsson | ||
email: [email protected] | ||
|
@@ -22,8 +22,8 @@ sources: | |
home: https://github.com/hpe-storage/truenas-csp | ||
dependencies: | ||
- name: hpe-csi-driver | ||
version: 2.0.0 | ||
# repository: https://hpe-storage.github.io/co-deployments | ||
version: 2.1.0 | ||
repository: "https://hpe-storage.github.io/co-deployments" | ||
keywords: | ||
- HPE | ||
- Storage | ||
|
Oops, something went wrong.