-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added helm repo push to GitHub pages
- Loading branch information
1 parent
0629a3f
commit a6b0b14
Showing
13 changed files
with
319 additions
and
14 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
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
File renamed without changes.
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,23 @@ | ||
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | ||
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/csi-wekafs)](https://artifacthub.io/packages/search?repo=csi-wekafs) | ||
# CSI WekaFS Driver | ||
|
||
This repository hosts the CSI WekaFS driver and all of its build and dependent configuration files to deploy the driver. | ||
|
||
## Pre-requisite | ||
- Kubernetes cluster of version 1.18 and up, 1.19 and up recommended, 1.13 and up should work but were not tested. | ||
- Helm v3 must be installed and configured properly | ||
- Weka system pre-configured and Weka client installed and registered in cluster for each Kubernetes node | ||
|
||
## Deployment | ||
```shell | ||
helm repo add csi-wekafs https://weka.github.io/csi-wekafs | ||
helm install csi-wekafs csi-wekafs/csi-wekafsplugin --namespace csi-wekafsplugin --create-namespace | ||
``` | ||
|
||
## Usage | ||
- [Deploy an Example application](https://github.com/weka/csi-wekafs/blob/master/docs/usage.md) | ||
|
||
## Additional Documentation | ||
- [Official Weka CSI Plugin documentation](https://docs.weka.io/appendix/weka-csi-plugin) | ||
|
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 @@ | ||
Thank you for installing {{ .Chart.Name }}. | ||
|
||
Your release is named {{ .Release.Name }}. | ||
|
||
To learn more about the release, try: | ||
|
||
$ helm status {{ .Release.Name }} | ||
$ helm get all {{ .Release.Name }} | ||
|
||
Official Weka CSI Plugin documentation can be found here: https://docs.weka.io/appendix/weka-csi-plugin |
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,104 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"controllerPluginTolerations": { | ||
"type": "array", | ||
"description": "CSI Controller component tolerations", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"effect": { | ||
"type": "string" | ||
}, | ||
"key": { | ||
"type": "string" | ||
}, | ||
"operator": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"csiDriverName": { | ||
"type": "string", | ||
"description": "Override name of CSI driver" | ||
}, | ||
"csiDriverVersion": { | ||
"type": "string" | ||
}, | ||
"dynamicProvisionPath": { | ||
"type": "string", | ||
"description": "Root path of dynamic volumes (relative to filesystem root)" | ||
}, | ||
"globalPluginTolerations": { | ||
"type": "array", | ||
"description": "Global tolerations for all plugin components", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"effect": { | ||
"type": "string" | ||
}, | ||
"key": { | ||
"type": "string" | ||
}, | ||
"operator": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"images": { | ||
"type": "object", | ||
"properties": { | ||
"attachersidecar": { | ||
"type": "string", | ||
"description": "Path to Docker image of attachersidecar container" | ||
}, | ||
"csidriver": { | ||
"type": "string", | ||
"description": "Path to Docker image of csidriver container" | ||
}, | ||
"csidriverTag": { | ||
"type": "string", | ||
"description": "Path to Docker image of csidriverTag container" | ||
}, | ||
"livenessprobesidecar": { | ||
"type": "string", | ||
"description": "Path to Docker image of livenessprobesidecar container" | ||
}, | ||
"provisionersidecar": { | ||
"type": "string", | ||
"description": "Path to Docker image of provisionersidecar container" | ||
}, | ||
"registrarsidecar": { | ||
"type": "string", | ||
"description": "Path to Docker image of registrarsidecar container" | ||
}, | ||
"resizersidecar": { | ||
"type": "string", | ||
"description": "Path to Docker image of resizersidecar container" | ||
} | ||
} | ||
}, | ||
"nodePluginTolerations": { | ||
"type": "array", | ||
"description": "CSI Node component tolerations", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"effect": { | ||
"type": "string" | ||
}, | ||
"key": { | ||
"type": "string" | ||
}, | ||
"operator": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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.