├── .github └── workflows │ └── test-helm-chart.yml ├── .gitignore ├── .travis.yml ├── README.md ├── csi-driver-templates ├── .helmignore ├── Chart.yaml ├── README.md ├── k8s-snapshot-controller.yaml ├── k8s-snapshot-crd.yaml ├── templates │ ├── _csi_driver_object.tpl │ ├── csi-driver.yaml │ └── pods │ │ ├── _README.md │ │ ├── _quobyte_csi_controller_pod.tpl │ │ ├── _quobyte_csi_node_driver_pod.tpl │ │ ├── _quobyte_csi_pod_killer_cache.tpl │ │ ├── containers │ │ ├── _README.md │ │ ├── _quobyte_csi_controller_container.tpl │ │ ├── _quobyte_csi_node_driver_container.tpl │ │ ├── _quobyte_csi_pod_killer_cache_container.tpl │ │ ├── _quobyte_pod_mount_monitor_container.tpl │ │ ├── _sidecar_attacher_container.tpl │ │ ├── _sidecar_node_registrar_container.tpl │ │ ├── _sidecar_provisioner_container.tpl │ │ ├── _sidecar_resizer_container.tpl │ │ └── _sidecar_snapshotter_container.tpl │ │ ├── rbac │ │ ├── _README.md │ │ ├── _quobyte_csi_pod_killer_cache_rbac.tpl │ │ ├── _sidecar_attacher_rbac.tpl │ │ ├── _sidecar_node_registrar_rbac.tpl │ │ ├── _sidecar_provisioner_rbac.tpl │ │ ├── _sidecar_resizer_rbac.tpl │ │ └── _sidecar_snapshotter_rbac.tpl │ │ ├── serviceAccounts │ │ ├── _controller_service_account.tpl │ │ ├── _node_driver_service_account.tpl │ │ └── _quobyte_csi_pod_killer_cache_service_account.tpl │ │ └── volumes │ │ ├── _README.md │ │ ├── _quobyte_csi_controller_volume_attachments.tpl │ │ └── _quobyte_csi_node_plugin_volume_attachments.tpl ├── tests │ ├── README.md │ ├── __snapshot__ │ │ └── csi_driver_test.yaml.snap │ └── csi_driver_test.yaml └── values.yaml ├── docs ├── Release.md ├── build_from_source.md ├── collect_quobyte_csi_logs.md ├── github-actions-test-fail.md ├── install_client │ ├── README.md │ ├── deploy_clients_2_x.md │ └── deploy_clients_3_x.md ├── multi-cluster-setup.md ├── quobyte_access_keys.md ├── quobyte_versions.md └── update_quobyte_csi_or_clients.md ├── example ├── Storage-class-shared-volume.yaml ├── StorageClass.yaml ├── access_keys │ ├── all_uses_access_keys.csv │ ├── api_access_keys.csv │ ├── mount_access_keys.csv │ ├── nginx-api-and-mount-secret.yaml │ ├── nginx-generic-secret.yaml │ ├── pvc-api-and-mount-secret.yaml │ ├── pvc-generic-secret.yaml │ ├── quobyte-api-secret.yaml │ ├── quobyte-generic-secret.yaml │ ├── quobyte-mount-secret.yaml │ ├── storage-class-api-and-mount-secret.yaml │ └── storage-class-generic-secret.yaml ├── client.yaml ├── index.html ├── nginx-demo-pod-with-dynamic-snapshot-vol.yaml ├── nginx-demo-pod-with-dynamic-vol.yaml ├── nginx-demo-pod-with-existing-vol.yaml ├── nginx-demo-pod-with-pre-provisioned-snapshot-vol.yaml ├── pv-existing-vol.yaml ├── pvc-dynamic-provision.yaml ├── pvc-existing-vol.yaml ├── quobyte-admin-credentials.yaml ├── restore-snapshot-pvc-dynamic-provision.yaml ├── restore-snapshot-pvc-pre-provisioned.yaml ├── volume-snapshot-class.yaml ├── volume-snapshot-content-pre-provisioned.yaml ├── volume-snapshot-dynamic-provision.yaml └── volume-snapshot-pre-provisioned.yaml ├── helm ├── index.html ├── index.yaml ├── quobyte-csi-driver-1.8.5.tgz ├── quobyte-csi-driver-1.8.6.tgz ├── quobyte-csi-driver-2.0.0.tgz ├── quobyte-csi-driver-2.0.1.tgz ├── quobyte-csi-driver-2.0.2.tgz ├── quobyte-csi-driver-2.0.3.tgz ├── quobyte-csi-driver-2.1.0.tgz ├── quobyte-csi-driver-2.1.1.tgz ├── quobyte-csi-driver-2.1.2.tgz ├── quobyte-csi-driver-2.1.3.tgz ├── quobyte-csi-driver-2.1.4.tgz ├── quobyte-csi-driver-2.1.5.tgz ├── quobyte-csi-driver-2.1.6.tgz └── quobyte-csi-driver-2.1.7.tgz ├── kind-cluster ├── README.md ├── cleanup ├── e2e ├── run_test └── test-configs │ ├── README.md │ ├── local_cluster_3.x │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── local_cluster_3.x_accesskeys │ ├── README.txt │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── local_cluster_3.x_accesskeys_2 │ ├── README.txt │ ├── k8s_01_quobyte_mount_secret.yaml │ ├── k8s_02_quobyte_api_secret.yaml │ ├── k8s_client.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── local_cluster_3.x_shared_volume │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── local_cluster_3.x_snapshots │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ ├── k8s_volume-snapshot-class.yaml │ └── values.yaml │ ├── test_3.x │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── test_3.x_shared_volume │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ ├── testing_cluster │ ├── k8s_1_testing_pki-configmap.yaml │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml │ └── testing_cluster_shared_volume │ ├── k8s_1_testing_pki-configmap.yaml │ ├── k8s_client.yaml │ ├── k8s_quobyte_secret.yaml │ ├── k8s_storage_class.yaml │ └── values.yaml ├── log_collector.sh ├── src ├── Dockerfile ├── build.sh ├── cmd │ └── main.go ├── driver │ ├── controller.go │ ├── controller_test.go │ ├── driver.go │ ├── identity.go │ ├── identity_test.go │ ├── mounter.go │ ├── mounter_test.go │ ├── node.go │ ├── node_test.go │ ├── quobyte_api_client_factory.go │ ├── shared_volume_directory_deleter.go │ ├── types.go │ ├── utils.go │ └── utils_test.go ├── go.mod ├── go.sum └── mocks │ ├── mock_client_provider.go │ └── mock_mounter.go └── usage-example └── shared-volume └── README.md /.github/workflows/test-helm-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/.github/workflows/test-helm-chart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/README.md -------------------------------------------------------------------------------- /csi-driver-templates/.helmignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /csi-driver-templates/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/Chart.yaml -------------------------------------------------------------------------------- /csi-driver-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/README.md -------------------------------------------------------------------------------- /csi-driver-templates/k8s-snapshot-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/k8s-snapshot-controller.yaml -------------------------------------------------------------------------------- /csi-driver-templates/k8s-snapshot-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/k8s-snapshot-crd.yaml -------------------------------------------------------------------------------- /csi-driver-templates/templates/_csi_driver_object.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/_csi_driver_object.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/csi-driver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/csi-driver.yaml -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/_README.md -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/_quobyte_csi_controller_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/_quobyte_csi_controller_pod.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/_quobyte_csi_node_driver_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/_quobyte_csi_node_driver_pod.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/_quobyte_csi_pod_killer_cache.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/_quobyte_csi_pod_killer_cache.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_README.md -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_quobyte_csi_controller_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_quobyte_csi_controller_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_quobyte_csi_node_driver_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_quobyte_csi_node_driver_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_quobyte_csi_pod_killer_cache_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_quobyte_csi_pod_killer_cache_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_quobyte_pod_mount_monitor_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_quobyte_pod_mount_monitor_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_sidecar_attacher_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_sidecar_attacher_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_sidecar_node_registrar_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_sidecar_node_registrar_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_sidecar_provisioner_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_sidecar_provisioner_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_sidecar_resizer_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_sidecar_resizer_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/containers/_sidecar_snapshotter_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/containers/_sidecar_snapshotter_container.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_README.md -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_quobyte_csi_pod_killer_cache_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_quobyte_csi_pod_killer_cache_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_sidecar_attacher_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_sidecar_attacher_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_sidecar_node_registrar_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_sidecar_node_registrar_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_sidecar_provisioner_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_sidecar_provisioner_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_sidecar_resizer_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_sidecar_resizer_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/rbac/_sidecar_snapshotter_rbac.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/rbac/_sidecar_snapshotter_rbac.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/serviceAccounts/_controller_service_account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/serviceAccounts/_controller_service_account.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/serviceAccounts/_node_driver_service_account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/serviceAccounts/_node_driver_service_account.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/serviceAccounts/_quobyte_csi_pod_killer_cache_service_account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/serviceAccounts/_quobyte_csi_pod_killer_cache_service_account.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/volumes/_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/volumes/_README.md -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/volumes/_quobyte_csi_controller_volume_attachments.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/volumes/_quobyte_csi_controller_volume_attachments.tpl -------------------------------------------------------------------------------- /csi-driver-templates/templates/pods/volumes/_quobyte_csi_node_plugin_volume_attachments.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/templates/pods/volumes/_quobyte_csi_node_plugin_volume_attachments.tpl -------------------------------------------------------------------------------- /csi-driver-templates/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/tests/README.md -------------------------------------------------------------------------------- /csi-driver-templates/tests/__snapshot__/csi_driver_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/tests/__snapshot__/csi_driver_test.yaml.snap -------------------------------------------------------------------------------- /csi-driver-templates/tests/csi_driver_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/tests/csi_driver_test.yaml -------------------------------------------------------------------------------- /csi-driver-templates/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/csi-driver-templates/values.yaml -------------------------------------------------------------------------------- /docs/Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/Release.md -------------------------------------------------------------------------------- /docs/build_from_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/build_from_source.md -------------------------------------------------------------------------------- /docs/collect_quobyte_csi_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/collect_quobyte_csi_logs.md -------------------------------------------------------------------------------- /docs/github-actions-test-fail.md: -------------------------------------------------------------------------------- 1 | ../csi-driver-templates/tests/README.md -------------------------------------------------------------------------------- /docs/install_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/install_client/README.md -------------------------------------------------------------------------------- /docs/install_client/deploy_clients_2_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/install_client/deploy_clients_2_x.md -------------------------------------------------------------------------------- /docs/install_client/deploy_clients_3_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/install_client/deploy_clients_3_x.md -------------------------------------------------------------------------------- /docs/multi-cluster-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/multi-cluster-setup.md -------------------------------------------------------------------------------- /docs/quobyte_access_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/quobyte_access_keys.md -------------------------------------------------------------------------------- /docs/quobyte_versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/quobyte_versions.md -------------------------------------------------------------------------------- /docs/update_quobyte_csi_or_clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/docs/update_quobyte_csi_or_clients.md -------------------------------------------------------------------------------- /example/Storage-class-shared-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/Storage-class-shared-volume.yaml -------------------------------------------------------------------------------- /example/StorageClass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/StorageClass.yaml -------------------------------------------------------------------------------- /example/access_keys/all_uses_access_keys.csv: -------------------------------------------------------------------------------- 1 | GENERAL_ACCESS_KEY 2 | csi-driver,fSSx9wanak3N7Jr4Kd6g,sBGVqSMNn1t64n6CrVQ7J3QDnfxejMn1cz044eTz,csi-test -------------------------------------------------------------------------------- /example/access_keys/api_access_keys.csv: -------------------------------------------------------------------------------- 1 | MANAGEMENT_ACCESS_KEY 2 | csi-driver,V5DY6kKtNYb1hj6b92dV,0F60MGYe2ytdy707gB2hcHfT0sgkK0HHbAeBPxgh 3 | -------------------------------------------------------------------------------- /example/access_keys/mount_access_keys.csv: -------------------------------------------------------------------------------- 1 | DATA_ACCESS_KEY 2 | csi-driver,Xwx7R4rAH5bTUQhNQeeJ,cWN2FkKVBpR1ngyk+cS25AXnZgb+w8Z1rHq88Hfu,csi-test -------------------------------------------------------------------------------- /example/access_keys/nginx-api-and-mount-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/nginx-api-and-mount-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/nginx-generic-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/nginx-generic-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/pvc-api-and-mount-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/pvc-api-and-mount-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/pvc-generic-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/pvc-generic-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/quobyte-api-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/quobyte-api-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/quobyte-generic-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/quobyte-generic-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/quobyte-mount-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/quobyte-mount-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/storage-class-api-and-mount-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/storage-class-api-and-mount-secret.yaml -------------------------------------------------------------------------------- /example/access_keys/storage-class-generic-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/access_keys/storage-class-generic-secret.yaml -------------------------------------------------------------------------------- /example/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/client.yaml -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/index.html -------------------------------------------------------------------------------- /example/nginx-demo-pod-with-dynamic-snapshot-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/nginx-demo-pod-with-dynamic-snapshot-vol.yaml -------------------------------------------------------------------------------- /example/nginx-demo-pod-with-dynamic-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/nginx-demo-pod-with-dynamic-vol.yaml -------------------------------------------------------------------------------- /example/nginx-demo-pod-with-existing-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/nginx-demo-pod-with-existing-vol.yaml -------------------------------------------------------------------------------- /example/nginx-demo-pod-with-pre-provisioned-snapshot-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/nginx-demo-pod-with-pre-provisioned-snapshot-vol.yaml -------------------------------------------------------------------------------- /example/pv-existing-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/pv-existing-vol.yaml -------------------------------------------------------------------------------- /example/pvc-dynamic-provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/pvc-dynamic-provision.yaml -------------------------------------------------------------------------------- /example/pvc-existing-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/pvc-existing-vol.yaml -------------------------------------------------------------------------------- /example/quobyte-admin-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/quobyte-admin-credentials.yaml -------------------------------------------------------------------------------- /example/restore-snapshot-pvc-dynamic-provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/restore-snapshot-pvc-dynamic-provision.yaml -------------------------------------------------------------------------------- /example/restore-snapshot-pvc-pre-provisioned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/restore-snapshot-pvc-pre-provisioned.yaml -------------------------------------------------------------------------------- /example/volume-snapshot-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/volume-snapshot-class.yaml -------------------------------------------------------------------------------- /example/volume-snapshot-content-pre-provisioned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/volume-snapshot-content-pre-provisioned.yaml -------------------------------------------------------------------------------- /example/volume-snapshot-dynamic-provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/volume-snapshot-dynamic-provision.yaml -------------------------------------------------------------------------------- /example/volume-snapshot-pre-provisioned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/example/volume-snapshot-pre-provisioned.yaml -------------------------------------------------------------------------------- /helm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/index.html -------------------------------------------------------------------------------- /helm/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/index.yaml -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-1.8.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-1.8.5.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-1.8.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-1.8.6.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.0.0.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.0.1.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.0.2.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.0.3.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.0.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.1.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.2.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.3.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.4.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.5.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.6.tgz -------------------------------------------------------------------------------- /helm/quobyte-csi-driver-2.1.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/helm/quobyte-csi-driver-2.1.7.tgz -------------------------------------------------------------------------------- /kind-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/README.md -------------------------------------------------------------------------------- /kind-cluster/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/cleanup -------------------------------------------------------------------------------- /kind-cluster/e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/e2e -------------------------------------------------------------------------------- /kind-cluster/run_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/run_test -------------------------------------------------------------------------------- /kind-cluster/test-configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/README.md -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys/README.txt -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/README.txt -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_01_quobyte_mount_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_01_quobyte_mount_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_02_quobyte_api_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_02_quobyte_api_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_accesskeys_2/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_shared_volume/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_shared_volume/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_shared_volume/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_volume-snapshot-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_snapshots/k8s_volume-snapshot-class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/local_cluster_3.x_snapshots/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/local_cluster_3.x_snapshots/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x_shared_volume/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x_shared_volume/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x_shared_volume/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x_shared_volume/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x_shared_volume/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x_shared_volume/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/test_3.x_shared_volume/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/test_3.x_shared_volume/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster/k8s_1_testing_pki-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster/k8s_1_testing_pki-configmap.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster/values.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster_shared_volume/k8s_1_testing_pki-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster_shared_volume/k8s_1_testing_pki-configmap.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster_shared_volume/k8s_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster_shared_volume/k8s_client.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster_shared_volume/k8s_quobyte_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster_shared_volume/k8s_quobyte_secret.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster_shared_volume/k8s_storage_class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster_shared_volume/k8s_storage_class.yaml -------------------------------------------------------------------------------- /kind-cluster/test-configs/testing_cluster_shared_volume/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/kind-cluster/test-configs/testing_cluster_shared_volume/values.yaml -------------------------------------------------------------------------------- /log_collector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/log_collector.sh -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/cmd/main.go -------------------------------------------------------------------------------- /src/driver/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/controller.go -------------------------------------------------------------------------------- /src/driver/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/controller_test.go -------------------------------------------------------------------------------- /src/driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/driver.go -------------------------------------------------------------------------------- /src/driver/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/identity.go -------------------------------------------------------------------------------- /src/driver/identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/identity_test.go -------------------------------------------------------------------------------- /src/driver/mounter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/mounter.go -------------------------------------------------------------------------------- /src/driver/mounter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/mounter_test.go -------------------------------------------------------------------------------- /src/driver/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/node.go -------------------------------------------------------------------------------- /src/driver/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/node_test.go -------------------------------------------------------------------------------- /src/driver/quobyte_api_client_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/quobyte_api_client_factory.go -------------------------------------------------------------------------------- /src/driver/shared_volume_directory_deleter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/shared_volume_directory_deleter.go -------------------------------------------------------------------------------- /src/driver/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/types.go -------------------------------------------------------------------------------- /src/driver/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/utils.go -------------------------------------------------------------------------------- /src/driver/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/driver/utils_test.go -------------------------------------------------------------------------------- /src/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/go.mod -------------------------------------------------------------------------------- /src/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/go.sum -------------------------------------------------------------------------------- /src/mocks/mock_client_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/mocks/mock_client_provider.go -------------------------------------------------------------------------------- /src/mocks/mock_mounter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/src/mocks/mock_mounter.go -------------------------------------------------------------------------------- /usage-example/shared-volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quobyte/quobyte-csi-driver/HEAD/usage-example/shared-volume/README.md --------------------------------------------------------------------------------