-
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.
Docs and release assets for v2.5.1 (#64)
* v2.5.1 release Signed-off-by: Michael Mattsson <michael.mattsson@gmail.com>
- Loading branch information
1 parent
a253391
commit 74fac39
Showing
18 changed files
with
200 additions
and
66 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
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.5.1 | ||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: hpe-csi-driver | ||
repository: https://hpe-storage.github.io/co-deployments | ||
version: 2.4.2 | ||
digest: sha256:2843d9f603e7c46f931c3cbf033ad80d5df6c1a18b94e90a70237c4e79241c52 | ||
generated: "2024-05-05T17:18:52.756541473Z" | ||
version: 2.5.1 | ||
digest: sha256:3caec267f6ae176da7d26faf3f9fddee9e2e2d1b748d4dba7f3aeca43f235164 | ||
generated: "2024-09-12T06:35:38.684668036Z" |
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
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
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.