├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .helmignore ├── Chart.yaml ├── LICENSE ├── Makefile ├── README.md ├── fio ├── Dockerfile └── test.fio ├── templates ├── NOTES.txt ├── _helpers.tpl ├── controller.yaml ├── csidriver.yaml ├── node.yaml ├── secret.yaml ├── snapshotter.yaml ├── storage-class.yaml ├── test.yaml └── volume-snapshot-class.yaml └── values.yaml /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /custom.yaml 2 | /dist 3 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/README.md -------------------------------------------------------------------------------- /fio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/fio/Dockerfile -------------------------------------------------------------------------------- /fio/test.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/fio/test.fio -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/controller.yaml -------------------------------------------------------------------------------- /templates/csidriver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/csidriver.yaml -------------------------------------------------------------------------------- /templates/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/node.yaml -------------------------------------------------------------------------------- /templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/secret.yaml -------------------------------------------------------------------------------- /templates/snapshotter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/snapshotter.yaml -------------------------------------------------------------------------------- /templates/storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/storage-class.yaml -------------------------------------------------------------------------------- /templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/test.yaml -------------------------------------------------------------------------------- /templates/volume-snapshot-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/templates/volume-snapshot-class.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christian-schlichtherle/synology-csi-chart/HEAD/values.yaml --------------------------------------------------------------------------------