├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── common-workflows.yaml │ ├── create-tag-release.yaml │ ├── go-version.yaml │ ├── image-version-update.yaml │ ├── license-checker.yaml │ ├── update-libraries-to-commits.yaml │ └── update-libraries.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── core ├── .gitignore ├── core.go ├── semver.tpl └── semver │ ├── semver.go │ └── semver_test.go ├── csi-powermax.sh ├── csireverseproxy ├── .gitignore ├── Dockerfile ├── Makefile ├── certs │ └── .gitkeep ├── deploy │ └── config.yaml ├── docker.mk ├── env.sh ├── go.mod ├── go.sum ├── licenses │ └── LICENSE ├── main.go ├── main_test.go ├── manifests │ └── revproxy.yaml ├── overrides.mk ├── pkg │ ├── cache │ │ ├── cache.go │ │ └── cache_test.go │ ├── common │ │ ├── common.go │ │ ├── common_test.go │ │ ├── constants.go │ │ ├── envoy.go │ │ └── envoy_test.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ └── mocks │ │ │ └── config-manager.go │ ├── k8smock │ │ ├── k8smock.go │ │ └── k8smock_test.go │ ├── k8sutils │ │ ├── k8sutils.go │ │ └── k8sutils_test.go │ ├── proxy │ │ ├── proxy.go │ │ └── proxy_test.go │ ├── servermock │ │ ├── servermock.go │ │ └── servermock_test.go │ └── utils │ │ ├── locks.go │ │ ├── locks_test.go │ │ ├── utils.go │ │ └── utils_test.go ├── run.sh ├── scripts │ ├── clean.sh │ └── deploy.sh ├── test-config │ ├── config-params.yaml │ ├── config.yaml │ ├── configB.yaml │ ├── configB_single.yaml │ ├── configB_single_noBackup.yaml │ ├── configC_single.yaml │ ├── secret-config.yaml │ └── tmp │ │ └── .gitkeep └── tls │ ├── tls.crt │ └── tls.key ├── dell-csi-helm-installer ├── .gitignore ├── README.md ├── common.sh ├── csi-install.sh ├── csi-offline-bundle.md ├── csi-offline-bundle.sh ├── csi-uninstall.sh ├── verify-csi-powermax.sh └── verify.sh ├── deploy └── config.yaml ├── docker.mk ├── env.sh ├── go.mod ├── go.sum ├── k8smock └── k8sutils_mock.go ├── k8sutils ├── k8sutils.go └── k8sutils_test.go ├── licenses └── LICENSE ├── main.go ├── main_test.go ├── overrides.mk ├── pkg ├── file │ ├── file.go │ └── file_test.go ├── migration │ ├── migration.go │ └── migration_test.go └── symmetrix │ ├── metro.go │ ├── metro_test.go │ ├── mocks │ ├── pmaxclient.go │ └── roundtripper.go │ ├── powermax.go │ └── powermax_test.go ├── plugin.go ├── provider ├── provider.go └── provider_test.go ├── runcontroller.sh ├── samples ├── configmap │ ├── powermax-array-config.yaml │ └── topologyConfig.yaml ├── migrationgroup │ └── migrationgroup.yaml ├── secret │ ├── emptysecret.yaml │ ├── karavi-authorization-config.json │ ├── reveal_secret.sh │ ├── secret.yaml │ └── vcenter-secret.yaml ├── storageclass │ ├── powermax.yaml │ ├── powermax_fc.yaml │ ├── powermax_iscsi.yaml │ ├── powermax_nfs.yaml │ ├── powermax_nvmetcp.yaml │ ├── powermax_srdf.yaml │ ├── powermax_vsphere.yaml │ ├── powermax_xfs.yaml │ └── powermax_zone.yaml └── volumesnapshotclass │ ├── rep_powermax-snapclas.yaml │ └── v1_powermax-snapclass.yaml ├── service ├── Makefile ├── README.md ├── controller.go ├── controller_test.go ├── csi_ctrl_to_node_connectivity.go ├── csi_ctrl_to_node_connectivity_test.go ├── csi_extension_server.go ├── deletion_worker.go ├── deletion_worker_test.go ├── envvars.go ├── features │ ├── controller_publish_unpublish.feature │ ├── csi_extension.feature │ ├── delete_volume.feature │ ├── initiatorname.iscsi │ ├── list_volumes.feature.disabled │ ├── migration.feature │ ├── multiple_iqn.iscsi │ ├── no_iqn.iscsi │ ├── node_publish_unpublish.feature │ ├── replication.feature │ ├── service.feature │ ├── snapshot.feature │ ├── snapshot.feature.disabled │ ├── valid.iscsi │ └── with_comments.iscsi ├── gobrick_mock_test.go ├── gosystemd_mock.go ├── identity.go ├── identity_test.go ├── interfaces.go ├── locks.go ├── migration.go ├── migration_test.go ├── mock-data │ ├── directorIDList.json │ ├── director_template.json │ ├── hostIDList.json │ ├── host_template.json │ ├── initiatorIDList.json │ ├── initiator_template.json │ ├── masking_view_connections_template.json │ ├── masking_view_template.json │ ├── nvme_port_template.json │ ├── portGroupIDList.json │ ├── portIDList.json │ ├── port_group_template.json │ ├── port_template.json │ ├── storageGroupIDList.json │ ├── storageResourcePool.json │ ├── storage_group_snapshot_policy.json │ ├── storage_group_template.json │ ├── storage_pool_template.json │ ├── symmetrix13.json │ ├── symmetrix46.json │ ├── symmetrix47.json │ ├── symmetrixList.json │ ├── volumeList.json │ └── volume_template.json ├── mount.go ├── mount_test.go ├── node.go ├── node_connectivity_checker.go ├── node_connectivity_checker_test.go ├── node_test.go ├── pending.go ├── replication.go ├── replication_test.go ├── service.go ├── service_test.go ├── service_unit_test.go ├── snap.go ├── snap_test.go ├── step_defs_test.go ├── storage_group_svc.go ├── string_slice.go ├── system.go ├── vsphere.go └── vsphere_test.go └── test ├── helm ├── .gitignore ├── 10block │ ├── Chart.yaml │ ├── templates │ │ └── test.yaml │ └── values.yaml ├── 10vols │ ├── Chart.yaml │ ├── templates │ │ ├── pvc.yaml │ │ └── test.yaml │ └── values.yaml ├── 1bigvol │ ├── Chart.yaml │ ├── templates │ │ ├── pvc0.yaml │ │ └── test.yaml │ └── values.yaml ├── 1clonevol │ ├── Chart.yaml │ ├── templates │ │ ├── pvc0.yaml │ │ └── test.yaml │ └── values.yaml ├── 1vol-rep │ ├── Chart.yaml │ ├── templates │ │ ├── pvc0.yaml │ │ └── test.yaml │ └── values.yaml ├── 1vol │ ├── Chart.yaml │ ├── templates │ │ ├── pvc0.yaml │ │ └── test.yaml │ └── values.yaml ├── 2block │ ├── Chart.yaml │ ├── templates │ │ └── test.yaml │ └── values.yaml ├── 2vols+clone │ ├── Chart.yaml │ ├── templates │ │ ├── createFromVolume.yaml │ │ ├── pvc0.yaml │ │ ├── pvc1.yaml │ │ └── test.yaml │ └── values.yaml ├── 2vols+restore │ ├── Chart.yaml │ └── templates │ │ ├── createFromSnap.yaml │ │ ├── pvc0.yaml │ │ ├── pvc1.yaml │ │ └── test.yaml ├── 2vols │ ├── Chart.yaml │ ├── templates │ │ ├── pvc0.yaml │ │ ├── pvc1.yaml │ │ └── test.yaml │ └── values.yaml ├── 7vols │ ├── Chart.yaml │ ├── templates │ │ ├── pvc.yaml │ │ └── test.yaml │ └── values.yaml ├── README.md ├── block │ ├── Chart.yaml │ ├── templates │ │ └── test.yaml │ └── values.yaml ├── deletepvcs.sh ├── get.volume.ids ├── helm.lint.sh ├── logit.sh ├── snap1.yaml ├── snap2.yaml ├── snaprestoretest.sh ├── snaprestorexfstest.sh ├── starttest.sh ├── stoptest.sh ├── volumeclonetest.sh ├── volumeexpansiontest.sh └── xfspre │ ├── Chart.yaml │ ├── templates │ ├── pv.yaml │ ├── pvc4.yaml │ └── test.yaml │ └── values.yaml ├── integration ├── README.md ├── features │ └── integration.feature ├── integration_test.go ├── pool.yml ├── run.sh ├── step_defs_test.go └── validate_http_unauthorized.sh ├── multi-az ├── README.md ├── config ├── run.sh ├── scripts │ ├── log_utils.sh │ ├── modify_zoning_labels.sh │ ├── replace.sh │ ├── waitForPowerMaxPods.sh │ └── workload.sh └── testfiles │ ├── openssl.cnf │ └── templates │ ├── template-powermax-configmap.yaml │ ├── template-powermax-csm.yaml │ ├── template-powermax-secret.yaml │ ├── template-powermax-storageclass-1.yaml │ ├── template-powermax-storageclass-2.yaml │ ├── template-powermax-storageclass-zoneless-arrayid.yaml │ └── template-powermax-storageclass-zoneless.yaml ├── sanity ├── README.md ├── run.sh ├── secrets.yaml └── start_driver.sh └── scale └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/common-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/common-workflows.yaml -------------------------------------------------------------------------------- /.github/workflows/create-tag-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/create-tag-release.yaml -------------------------------------------------------------------------------- /.github/workflows/go-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/go-version.yaml -------------------------------------------------------------------------------- /.github/workflows/image-version-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/image-version-update.yaml -------------------------------------------------------------------------------- /.github/workflows/license-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/license-checker.yaml -------------------------------------------------------------------------------- /.github/workflows/update-libraries-to-commits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/update-libraries-to-commits.yaml -------------------------------------------------------------------------------- /.github/workflows/update-libraries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.github/workflows/update-libraries.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/README.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | core_generated.go 2 | -------------------------------------------------------------------------------- /core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/core/core.go -------------------------------------------------------------------------------- /core/semver.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/core/semver.tpl -------------------------------------------------------------------------------- /core/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/core/semver/semver.go -------------------------------------------------------------------------------- /core/semver/semver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/core/semver/semver_test.go -------------------------------------------------------------------------------- /csi-powermax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csi-powermax.sh -------------------------------------------------------------------------------- /csireverseproxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/.gitignore -------------------------------------------------------------------------------- /csireverseproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/Dockerfile -------------------------------------------------------------------------------- /csireverseproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/Makefile -------------------------------------------------------------------------------- /csireverseproxy/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csireverseproxy/deploy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/deploy/config.yaml -------------------------------------------------------------------------------- /csireverseproxy/docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/docker.mk -------------------------------------------------------------------------------- /csireverseproxy/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/env.sh -------------------------------------------------------------------------------- /csireverseproxy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/go.mod -------------------------------------------------------------------------------- /csireverseproxy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/go.sum -------------------------------------------------------------------------------- /csireverseproxy/licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/licenses/LICENSE -------------------------------------------------------------------------------- /csireverseproxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/main.go -------------------------------------------------------------------------------- /csireverseproxy/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/main_test.go -------------------------------------------------------------------------------- /csireverseproxy/manifests/revproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/manifests/revproxy.yaml -------------------------------------------------------------------------------- /csireverseproxy/overrides.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/overrides.mk -------------------------------------------------------------------------------- /csireverseproxy/pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/cache/cache.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/cache/cache_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/common/common.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/common/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/common/common_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/common/constants.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/common/envoy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/common/envoy.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/common/envoy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/common/envoy_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/config/config.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/config/config_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/config/mocks/config-manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/config/mocks/config-manager.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/k8smock/k8smock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/k8smock/k8smock.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/k8smock/k8smock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/k8smock/k8smock_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/k8sutils/k8sutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/k8sutils/k8sutils.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/k8sutils/k8sutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/k8sutils/k8sutils_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/proxy/proxy.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/proxy/proxy_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/servermock/servermock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/servermock/servermock.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/servermock/servermock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/servermock/servermock_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/utils/locks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/utils/locks.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/utils/locks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/utils/locks_test.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/utils/utils.go -------------------------------------------------------------------------------- /csireverseproxy/pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /csireverseproxy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/run.sh -------------------------------------------------------------------------------- /csireverseproxy/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/scripts/clean.sh -------------------------------------------------------------------------------- /csireverseproxy/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/scripts/deploy.sh -------------------------------------------------------------------------------- /csireverseproxy/test-config/config-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/config-params.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/config.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/configB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/configB.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/configB_single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/configB_single.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/configB_single_noBackup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/configB_single_noBackup.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/configC_single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/configC_single.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/secret-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/test-config/secret-config.yaml -------------------------------------------------------------------------------- /csireverseproxy/test-config/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csireverseproxy/tls/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/tls/tls.crt -------------------------------------------------------------------------------- /csireverseproxy/tls/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/csireverseproxy/tls/tls.key -------------------------------------------------------------------------------- /dell-csi-helm-installer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/.gitignore -------------------------------------------------------------------------------- /dell-csi-helm-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/README.md -------------------------------------------------------------------------------- /dell-csi-helm-installer/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/common.sh -------------------------------------------------------------------------------- /dell-csi-helm-installer/csi-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/csi-install.sh -------------------------------------------------------------------------------- /dell-csi-helm-installer/csi-offline-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/csi-offline-bundle.md -------------------------------------------------------------------------------- /dell-csi-helm-installer/csi-offline-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/csi-offline-bundle.sh -------------------------------------------------------------------------------- /dell-csi-helm-installer/csi-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/csi-uninstall.sh -------------------------------------------------------------------------------- /dell-csi-helm-installer/verify-csi-powermax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/verify-csi-powermax.sh -------------------------------------------------------------------------------- /dell-csi-helm-installer/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/dell-csi-helm-installer/verify.sh -------------------------------------------------------------------------------- /deploy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/deploy/config.yaml -------------------------------------------------------------------------------- /docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/docker.mk -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/env.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/go.sum -------------------------------------------------------------------------------- /k8smock/k8sutils_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/k8smock/k8sutils_mock.go -------------------------------------------------------------------------------- /k8sutils/k8sutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/k8sutils/k8sutils.go -------------------------------------------------------------------------------- /k8sutils/k8sutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/k8sutils/k8sutils_test.go -------------------------------------------------------------------------------- /licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/licenses/LICENSE -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/main_test.go -------------------------------------------------------------------------------- /overrides.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/overrides.mk -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/file/file_test.go -------------------------------------------------------------------------------- /pkg/migration/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/migration/migration.go -------------------------------------------------------------------------------- /pkg/migration/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/migration/migration_test.go -------------------------------------------------------------------------------- /pkg/symmetrix/metro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/metro.go -------------------------------------------------------------------------------- /pkg/symmetrix/metro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/metro_test.go -------------------------------------------------------------------------------- /pkg/symmetrix/mocks/pmaxclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/mocks/pmaxclient.go -------------------------------------------------------------------------------- /pkg/symmetrix/mocks/roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/mocks/roundtripper.go -------------------------------------------------------------------------------- /pkg/symmetrix/powermax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/powermax.go -------------------------------------------------------------------------------- /pkg/symmetrix/powermax_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/pkg/symmetrix/powermax_test.go -------------------------------------------------------------------------------- /plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/plugin.go -------------------------------------------------------------------------------- /provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/provider/provider.go -------------------------------------------------------------------------------- /provider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/provider/provider_test.go -------------------------------------------------------------------------------- /runcontroller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/runcontroller.sh -------------------------------------------------------------------------------- /samples/configmap/powermax-array-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/configmap/powermax-array-config.yaml -------------------------------------------------------------------------------- /samples/configmap/topologyConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/configmap/topologyConfig.yaml -------------------------------------------------------------------------------- /samples/migrationgroup/migrationgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/migrationgroup/migrationgroup.yaml -------------------------------------------------------------------------------- /samples/secret/emptysecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/secret/emptysecret.yaml -------------------------------------------------------------------------------- /samples/secret/karavi-authorization-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/secret/karavi-authorization-config.json -------------------------------------------------------------------------------- /samples/secret/reveal_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/secret/reveal_secret.sh -------------------------------------------------------------------------------- /samples/secret/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/secret/secret.yaml -------------------------------------------------------------------------------- /samples/secret/vcenter-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/secret/vcenter-secret.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_fc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_fc.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_iscsi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_iscsi.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_nfs.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_nvmetcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_nvmetcp.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_srdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_srdf.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_vsphere.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_vsphere.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_xfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_xfs.yaml -------------------------------------------------------------------------------- /samples/storageclass/powermax_zone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/storageclass/powermax_zone.yaml -------------------------------------------------------------------------------- /samples/volumesnapshotclass/rep_powermax-snapclas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/volumesnapshotclass/rep_powermax-snapclas.yaml -------------------------------------------------------------------------------- /samples/volumesnapshotclass/v1_powermax-snapclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/samples/volumesnapshotclass/v1_powermax-snapclass.yaml -------------------------------------------------------------------------------- /service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/Makefile -------------------------------------------------------------------------------- /service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/README.md -------------------------------------------------------------------------------- /service/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/controller.go -------------------------------------------------------------------------------- /service/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/controller_test.go -------------------------------------------------------------------------------- /service/csi_ctrl_to_node_connectivity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/csi_ctrl_to_node_connectivity.go -------------------------------------------------------------------------------- /service/csi_ctrl_to_node_connectivity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/csi_ctrl_to_node_connectivity_test.go -------------------------------------------------------------------------------- /service/csi_extension_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/csi_extension_server.go -------------------------------------------------------------------------------- /service/deletion_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/deletion_worker.go -------------------------------------------------------------------------------- /service/deletion_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/deletion_worker_test.go -------------------------------------------------------------------------------- /service/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/envvars.go -------------------------------------------------------------------------------- /service/features/controller_publish_unpublish.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/controller_publish_unpublish.feature -------------------------------------------------------------------------------- /service/features/csi_extension.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/csi_extension.feature -------------------------------------------------------------------------------- /service/features/delete_volume.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/delete_volume.feature -------------------------------------------------------------------------------- /service/features/initiatorname.iscsi: -------------------------------------------------------------------------------- 1 | InitiatorName=iqn.1993-08.org.debian:01:a86eeef2c837 -------------------------------------------------------------------------------- /service/features/list_volumes.feature.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/list_volumes.feature.disabled -------------------------------------------------------------------------------- /service/features/migration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/migration.feature -------------------------------------------------------------------------------- /service/features/multiple_iqn.iscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/multiple_iqn.iscsi -------------------------------------------------------------------------------- /service/features/no_iqn.iscsi: -------------------------------------------------------------------------------- 1 | # InitiatorName=iqn.1993-08.org.debian:01:a86eeef2c837 -------------------------------------------------------------------------------- /service/features/node_publish_unpublish.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/node_publish_unpublish.feature -------------------------------------------------------------------------------- /service/features/replication.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/replication.feature -------------------------------------------------------------------------------- /service/features/service.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/service.feature -------------------------------------------------------------------------------- /service/features/snapshot.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/snapshot.feature -------------------------------------------------------------------------------- /service/features/snapshot.feature.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/snapshot.feature.disabled -------------------------------------------------------------------------------- /service/features/valid.iscsi: -------------------------------------------------------------------------------- 1 | InitiatorName=iqn.1993-08.org.debian:01:a86eeef2c837 -------------------------------------------------------------------------------- /service/features/with_comments.iscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/features/with_comments.iscsi -------------------------------------------------------------------------------- /service/gobrick_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/gobrick_mock_test.go -------------------------------------------------------------------------------- /service/gosystemd_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/gosystemd_mock.go -------------------------------------------------------------------------------- /service/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/identity.go -------------------------------------------------------------------------------- /service/identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/identity_test.go -------------------------------------------------------------------------------- /service/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/interfaces.go -------------------------------------------------------------------------------- /service/locks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/locks.go -------------------------------------------------------------------------------- /service/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/migration.go -------------------------------------------------------------------------------- /service/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/migration_test.go -------------------------------------------------------------------------------- /service/mock-data/directorIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/directorIDList.json -------------------------------------------------------------------------------- /service/mock-data/director_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/director_template.json -------------------------------------------------------------------------------- /service/mock-data/hostIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/hostIDList.json -------------------------------------------------------------------------------- /service/mock-data/host_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/host_template.json -------------------------------------------------------------------------------- /service/mock-data/initiatorIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/initiatorIDList.json -------------------------------------------------------------------------------- /service/mock-data/initiator_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/initiator_template.json -------------------------------------------------------------------------------- /service/mock-data/masking_view_connections_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/masking_view_connections_template.json -------------------------------------------------------------------------------- /service/mock-data/masking_view_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/masking_view_template.json -------------------------------------------------------------------------------- /service/mock-data/nvme_port_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/nvme_port_template.json -------------------------------------------------------------------------------- /service/mock-data/portGroupIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/portGroupIDList.json -------------------------------------------------------------------------------- /service/mock-data/portIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/portIDList.json -------------------------------------------------------------------------------- /service/mock-data/port_group_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/port_group_template.json -------------------------------------------------------------------------------- /service/mock-data/port_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/port_template.json -------------------------------------------------------------------------------- /service/mock-data/storageGroupIDList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/storageGroupIDList.json -------------------------------------------------------------------------------- /service/mock-data/storageResourcePool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/storageResourcePool.json -------------------------------------------------------------------------------- /service/mock-data/storage_group_snapshot_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/storage_group_snapshot_policy.json -------------------------------------------------------------------------------- /service/mock-data/storage_group_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/storage_group_template.json -------------------------------------------------------------------------------- /service/mock-data/storage_pool_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/storage_pool_template.json -------------------------------------------------------------------------------- /service/mock-data/symmetrix13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/symmetrix13.json -------------------------------------------------------------------------------- /service/mock-data/symmetrix46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/symmetrix46.json -------------------------------------------------------------------------------- /service/mock-data/symmetrix47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/symmetrix47.json -------------------------------------------------------------------------------- /service/mock-data/symmetrixList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/symmetrixList.json -------------------------------------------------------------------------------- /service/mock-data/volumeList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/volumeList.json -------------------------------------------------------------------------------- /service/mock-data/volume_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mock-data/volume_template.json -------------------------------------------------------------------------------- /service/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mount.go -------------------------------------------------------------------------------- /service/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/mount_test.go -------------------------------------------------------------------------------- /service/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/node.go -------------------------------------------------------------------------------- /service/node_connectivity_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/node_connectivity_checker.go -------------------------------------------------------------------------------- /service/node_connectivity_checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/node_connectivity_checker_test.go -------------------------------------------------------------------------------- /service/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/node_test.go -------------------------------------------------------------------------------- /service/pending.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/pending.go -------------------------------------------------------------------------------- /service/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/replication.go -------------------------------------------------------------------------------- /service/replication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/replication_test.go -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/service.go -------------------------------------------------------------------------------- /service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/service_test.go -------------------------------------------------------------------------------- /service/service_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/service_unit_test.go -------------------------------------------------------------------------------- /service/snap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/snap.go -------------------------------------------------------------------------------- /service/snap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/snap_test.go -------------------------------------------------------------------------------- /service/step_defs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/step_defs_test.go -------------------------------------------------------------------------------- /service/storage_group_svc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/storage_group_svc.go -------------------------------------------------------------------------------- /service/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/string_slice.go -------------------------------------------------------------------------------- /service/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/system.go -------------------------------------------------------------------------------- /service/vsphere.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/vsphere.go -------------------------------------------------------------------------------- /service/vsphere_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/service/vsphere_test.go -------------------------------------------------------------------------------- /test/helm/.gitignore: -------------------------------------------------------------------------------- 1 | __*__.yaml 2 | 3 | -------------------------------------------------------------------------------- /test/helm/10block/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10block/Chart.yaml -------------------------------------------------------------------------------- /test/helm/10block/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10block/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/10block/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10block/values.yaml -------------------------------------------------------------------------------- /test/helm/10vols/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10vols/Chart.yaml -------------------------------------------------------------------------------- /test/helm/10vols/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10vols/templates/pvc.yaml -------------------------------------------------------------------------------- /test/helm/10vols/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10vols/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/10vols/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/10vols/values.yaml -------------------------------------------------------------------------------- /test/helm/1bigvol/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1bigvol/Chart.yaml -------------------------------------------------------------------------------- /test/helm/1bigvol/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1bigvol/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/1bigvol/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1bigvol/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/1bigvol/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1bigvol/values.yaml -------------------------------------------------------------------------------- /test/helm/1clonevol/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1clonevol/Chart.yaml -------------------------------------------------------------------------------- /test/helm/1clonevol/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1clonevol/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/1clonevol/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1clonevol/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/1clonevol/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1clonevol/values.yaml -------------------------------------------------------------------------------- /test/helm/1vol-rep/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol-rep/Chart.yaml -------------------------------------------------------------------------------- /test/helm/1vol-rep/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol-rep/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/1vol-rep/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol-rep/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/1vol-rep/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol-rep/values.yaml -------------------------------------------------------------------------------- /test/helm/1vol/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol/Chart.yaml -------------------------------------------------------------------------------- /test/helm/1vol/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/1vol/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/1vol/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/1vol/values.yaml -------------------------------------------------------------------------------- /test/helm/2block/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2block/Chart.yaml -------------------------------------------------------------------------------- /test/helm/2block/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2block/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/2block/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2block/values.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/Chart.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/templates/createFromVolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/templates/createFromVolume.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/templates/pvc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/templates/pvc1.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/2vols+clone/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+clone/values.yaml -------------------------------------------------------------------------------- /test/helm/2vols+restore/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+restore/Chart.yaml -------------------------------------------------------------------------------- /test/helm/2vols+restore/templates/createFromSnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+restore/templates/createFromSnap.yaml -------------------------------------------------------------------------------- /test/helm/2vols+restore/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+restore/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/2vols+restore/templates/pvc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+restore/templates/pvc1.yaml -------------------------------------------------------------------------------- /test/helm/2vols+restore/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols+restore/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/2vols/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols/Chart.yaml -------------------------------------------------------------------------------- /test/helm/2vols/templates/pvc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols/templates/pvc0.yaml -------------------------------------------------------------------------------- /test/helm/2vols/templates/pvc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols/templates/pvc1.yaml -------------------------------------------------------------------------------- /test/helm/2vols/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/2vols/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/2vols/values.yaml -------------------------------------------------------------------------------- /test/helm/7vols/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/7vols/Chart.yaml -------------------------------------------------------------------------------- /test/helm/7vols/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/7vols/templates/pvc.yaml -------------------------------------------------------------------------------- /test/helm/7vols/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/7vols/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/7vols/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/7vols/values.yaml -------------------------------------------------------------------------------- /test/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/README.md -------------------------------------------------------------------------------- /test/helm/block/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/block/Chart.yaml -------------------------------------------------------------------------------- /test/helm/block/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/block/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/block/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/block/values.yaml -------------------------------------------------------------------------------- /test/helm/deletepvcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/deletepvcs.sh -------------------------------------------------------------------------------- /test/helm/get.volume.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/get.volume.ids -------------------------------------------------------------------------------- /test/helm/helm.lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/helm.lint.sh -------------------------------------------------------------------------------- /test/helm/logit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/logit.sh -------------------------------------------------------------------------------- /test/helm/snap1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/snap1.yaml -------------------------------------------------------------------------------- /test/helm/snap2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/snap2.yaml -------------------------------------------------------------------------------- /test/helm/snaprestoretest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/snaprestoretest.sh -------------------------------------------------------------------------------- /test/helm/snaprestorexfstest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/snaprestorexfstest.sh -------------------------------------------------------------------------------- /test/helm/starttest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/starttest.sh -------------------------------------------------------------------------------- /test/helm/stoptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/stoptest.sh -------------------------------------------------------------------------------- /test/helm/volumeclonetest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/volumeclonetest.sh -------------------------------------------------------------------------------- /test/helm/volumeexpansiontest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/volumeexpansiontest.sh -------------------------------------------------------------------------------- /test/helm/xfspre/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/xfspre/Chart.yaml -------------------------------------------------------------------------------- /test/helm/xfspre/templates/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/xfspre/templates/pv.yaml -------------------------------------------------------------------------------- /test/helm/xfspre/templates/pvc4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/xfspre/templates/pvc4.yaml -------------------------------------------------------------------------------- /test/helm/xfspre/templates/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/xfspre/templates/test.yaml -------------------------------------------------------------------------------- /test/helm/xfspre/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/helm/xfspre/values.yaml -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/features/integration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/features/integration.feature -------------------------------------------------------------------------------- /test/integration/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/integration_test.go -------------------------------------------------------------------------------- /test/integration/pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/pool.yml -------------------------------------------------------------------------------- /test/integration/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/run.sh -------------------------------------------------------------------------------- /test/integration/step_defs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/step_defs_test.go -------------------------------------------------------------------------------- /test/integration/validate_http_unauthorized.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/integration/validate_http_unauthorized.sh -------------------------------------------------------------------------------- /test/multi-az/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/README.md -------------------------------------------------------------------------------- /test/multi-az/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/config -------------------------------------------------------------------------------- /test/multi-az/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/run.sh -------------------------------------------------------------------------------- /test/multi-az/scripts/log_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/scripts/log_utils.sh -------------------------------------------------------------------------------- /test/multi-az/scripts/modify_zoning_labels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/scripts/modify_zoning_labels.sh -------------------------------------------------------------------------------- /test/multi-az/scripts/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/scripts/replace.sh -------------------------------------------------------------------------------- /test/multi-az/scripts/waitForPowerMaxPods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/scripts/waitForPowerMaxPods.sh -------------------------------------------------------------------------------- /test/multi-az/scripts/workload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/scripts/workload.sh -------------------------------------------------------------------------------- /test/multi-az/testfiles/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/openssl.cnf -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-configmap.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-csm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-csm.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-secret.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-storageclass-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-storageclass-1.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-storageclass-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-storageclass-2.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-storageclass-zoneless-arrayid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-storageclass-zoneless-arrayid.yaml -------------------------------------------------------------------------------- /test/multi-az/testfiles/templates/template-powermax-storageclass-zoneless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/multi-az/testfiles/templates/template-powermax-storageclass-zoneless.yaml -------------------------------------------------------------------------------- /test/sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/sanity/README.md -------------------------------------------------------------------------------- /test/sanity/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/sanity/run.sh -------------------------------------------------------------------------------- /test/sanity/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/sanity/secrets.yaml -------------------------------------------------------------------------------- /test/sanity/start_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/sanity/start_driver.sh -------------------------------------------------------------------------------- /test/scale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell/csi-powermax/HEAD/test/scale/README.md --------------------------------------------------------------------------------