├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── release-checklist.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .golangci.yml ├── .travis-pri.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.driver.md ├── README.md ├── docs └── .gitignore ├── driver ├── .dockerignore ├── Dockerfile ├── build │ └── Dockerfile ├── chroot-wrapper.sh ├── cmd │ └── ibm-spectrum-scale-csi │ │ └── main.go ├── csiplugin │ ├── connectors │ │ ├── connectors.go │ │ ├── resources.go │ │ └── rest_v2.go │ ├── controllerserver.go │ ├── gpfs.go │ ├── gpfs_util.go │ ├── identityserver.go │ ├── nodeserver.go │ ├── parallelSnapshot.go │ ├── pkg │ │ └── consistencygroup │ │ │ └── consistencygroup.go │ ├── server.go │ ├── settings │ │ └── scale_config.go │ ├── tools │ │ └── spectrum-scale-driver.py │ ├── utils.go │ └── utils │ │ ├── http_utils.go │ │ └── utils.go ├── examples │ ├── cacheVolume │ │ ├── pod.yaml │ │ ├── pvcnfs.yaml │ │ ├── pvcs3.yaml │ │ └── storageclass.yaml │ ├── staticVolume │ │ ├── dynamicprovisioning │ │ │ ├── snapshot │ │ │ │ ├── pvcfrmsnap_static.yaml │ │ │ │ ├── volsnap_static.yaml │ │ │ │ └── volsnapclass_static.yaml │ │ │ └── volume │ │ │ │ ├── clonefrompvc_static_dependent.yaml │ │ │ │ ├── clonefrompvc_static_independent.yaml │ │ │ │ ├── pod_static.yaml │ │ │ │ ├── pvc_static_dependent.yaml │ │ │ │ ├── pvc_static_independent.yaml │ │ │ │ ├── storageclass_static_dependent.yaml │ │ │ │ ├── storageclass_static_expansion_independent.yaml │ │ │ │ ├── storageclass_static_independent.yaml │ │ │ │ └── vac_static.yaml │ │ └── staticprovisioning │ │ │ ├── pvcfrmsnap.yaml │ │ │ ├── snapshot │ │ │ ├── static_volsnap.yaml │ │ │ └── static_volsnapcontent.yaml │ │ │ └── volume │ │ │ ├── static_pod.yaml │ │ │ ├── static_pv.yaml │ │ │ └── static_pvc.yaml │ ├── version1 │ │ ├── snapshot │ │ │ ├── pvcfrmsnap.yaml │ │ │ ├── pvcfrmsnap_rom.yaml │ │ │ ├── storageClassWithNodeClass.yaml │ │ │ ├── volsnap.yaml │ │ │ └── volsnapclass.yaml │ │ └── volume │ │ │ ├── fileset │ │ │ ├── clonefrompvc_dependent.yaml │ │ │ ├── clonefrompvc_independent.yaml │ │ │ ├── podfileset.yaml │ │ │ ├── pvcfileset_dependent.yaml │ │ │ ├── pvcfileset_independent.yaml │ │ │ ├── storageclassfileset_compress_dependent.yaml │ │ │ ├── storageclassfileset_compress_independent.yaml │ │ │ ├── storageclassfileset_dependent.yaml │ │ │ ├── storageclassfileset_expansion_independent.yaml │ │ │ ├── storageclassfileset_independent.yaml │ │ │ ├── storageclassfileset_tier_dependent.yaml │ │ │ └── storageclassfileset_tier_independent.yaml │ │ │ └── lightweight │ │ │ ├── podlw.yaml │ │ │ ├── pvclw.yaml │ │ │ └── storageclasslw.yaml │ └── version2 │ │ ├── snapshot │ │ ├── pvcfrmsnap.yaml │ │ ├── volsnap.yaml │ │ └── volsnapclass.yaml │ │ └── volume │ │ ├── pod.yaml │ │ ├── pvc.yaml │ │ ├── storageclass.yaml │ │ ├── storageclass_compress.yaml │ │ ├── storageclass_expansion.yaml │ │ └── storageclass_tier.yaml ├── go.mod ├── go.sum └── licenses │ └── apache-2.txt ├── generated └── installer │ ├── ibm-spectrum-scale-csi-operator-dev.yaml │ └── ibm-spectrum-scale-csi-operator.yaml ├── kustomization.yaml ├── operator ├── .gitignore ├── Dockerfile ├── Makefile ├── PROJECT ├── README.md ├── api │ └── v1 │ │ ├── csiscaleoperator_types.go │ │ ├── groupversion_info.go │ │ └── zz_generated.deepcopy.go ├── build │ └── Dockerfile ├── bundle.Dockerfile ├── config │ ├── crd │ │ ├── bases │ │ │ └── csi.ibm.com_csiscaleoperators.yaml │ │ └── kustomization.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── manifests │ │ ├── bases │ │ │ └── ibm-spectrum-scale-csi-operator.clusterserviceversion.yaml │ │ └── kustomization.yaml │ ├── overlays │ │ ├── cnsa-k8s │ │ │ └── kustomization.yaml │ │ ├── cnsa │ │ │ └── kustomization.yaml │ │ └── default │ │ │ ├── images_manifest.yaml │ │ │ └── kustomization.yaml │ ├── rbac │ │ ├── kustomization.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ └── service_account.yaml │ ├── samples │ │ ├── csi_v1_csiscaleoperator.yaml │ │ ├── csiscaleoperators.csi.ibm.com_cr.yaml │ │ └── kustomization.yaml │ ├── scc │ │ ├── kustomization.yaml │ │ └── security_context_constraint.yaml │ ├── scorecard │ │ ├── bases │ │ │ └── config.yaml │ │ ├── kustomization.yaml │ │ └── patches │ │ │ ├── basic.config.yaml │ │ │ └── olm.config.yaml │ └── testing │ │ ├── debug_logs_patch.yaml │ │ ├── kustomization.yaml │ │ ├── manager_image.yaml │ │ └── pull_policy │ │ ├── Always.yaml │ │ ├── IfNotPresent.yaml │ │ └── Never.yaml ├── controllers │ ├── config │ │ ├── constants.go │ │ └── resources.go │ ├── csiscaleoperator_controller.go │ ├── internal │ │ └── csiscaleoperator │ │ │ ├── csiscaleoperator.go │ │ │ └── csiscaleoperator_package.go │ ├── suite_test.go │ ├── syncer │ │ ├── csi_node.go │ │ └── csi_syncer.go │ └── util │ │ ├── boolptr │ │ └── boolptr.go │ │ └── k8sutil │ │ └── k8sutil.go ├── docs │ └── dev │ │ └── security │ │ ├── results.golint.txt │ │ └── results.gosec.json ├── go.mod ├── go.sum ├── hacks │ ├── boilerplate.go.txt │ ├── csv_copy_cr.py │ ├── csv_copy_crd_descriptions.py │ ├── csv_copy_docs.py │ ├── csv_prep.py │ ├── health_check.go │ └── package_operator.py ├── licenses │ └── apache-2.txt └── main.go └── tools ├── ansible ├── common │ ├── dev-env.yaml │ ├── requirements-dev.txt │ ├── requirements-run.txt │ └── runtime-env.yaml ├── deploy-playbook.yaml ├── deploy │ ├── hacks │ │ ├── deploycsioperator.py │ │ └── templates │ │ │ ├── mmlscluster │ │ │ ├── mmlsfs │ │ │ └── mmlsnodeclass │ ├── nodeprep.yaml │ ├── preflight.yaml │ └── rest.yaml ├── dev-env-playbook.yaml ├── generate-playbook.yaml ├── generate │ └── create_files.yaml └── versioning-playbook.yaml ├── generate_pv_yaml.sh ├── generate_static_provisioning_yamls.sh ├── generate_volsnapcontent_yaml.sh ├── scripts ├── ci │ ├── ci-env │ ├── fold_ouput.sh │ ├── install_minikube.sh │ ├── install_operator-sdk.sh │ ├── lint_operator-courier.sh │ └── travis_before_script.sh └── push_app.sh ├── storage-scale-driver-snap.sh └── volume_migration_scripts ├── README.md ├── README_migration_cnsa_primary_removal.md ├── README_migration_csi_primary_removal.md ├── README_migration_csi_to_cnsa.md ├── migration_cnsa_primary_removal.bash ├── migration_csi_primary_removal.bash └── migration_csi_to_cnsa.bash /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.github/ISSUE_TEMPLATE/release-checklist.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.travis-pri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.travis-pri.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/OWNERS -------------------------------------------------------------------------------- /README.driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/README.driver.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _static 3 | _templates 4 | -------------------------------------------------------------------------------- /driver/.dockerignore: -------------------------------------------------------------------------------- 1 | examples -------------------------------------------------------------------------------- /driver/Dockerfile: -------------------------------------------------------------------------------- 1 | build/Dockerfile -------------------------------------------------------------------------------- /driver/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/build/Dockerfile -------------------------------------------------------------------------------- /driver/chroot-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/chroot-wrapper.sh -------------------------------------------------------------------------------- /driver/cmd/ibm-spectrum-scale-csi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/cmd/ibm-spectrum-scale-csi/main.go -------------------------------------------------------------------------------- /driver/csiplugin/connectors/connectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/connectors/connectors.go -------------------------------------------------------------------------------- /driver/csiplugin/connectors/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/connectors/resources.go -------------------------------------------------------------------------------- /driver/csiplugin/connectors/rest_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/connectors/rest_v2.go -------------------------------------------------------------------------------- /driver/csiplugin/controllerserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/controllerserver.go -------------------------------------------------------------------------------- /driver/csiplugin/gpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/gpfs.go -------------------------------------------------------------------------------- /driver/csiplugin/gpfs_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/gpfs_util.go -------------------------------------------------------------------------------- /driver/csiplugin/identityserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/identityserver.go -------------------------------------------------------------------------------- /driver/csiplugin/nodeserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/nodeserver.go -------------------------------------------------------------------------------- /driver/csiplugin/parallelSnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/parallelSnapshot.go -------------------------------------------------------------------------------- /driver/csiplugin/pkg/consistencygroup/consistencygroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/pkg/consistencygroup/consistencygroup.go -------------------------------------------------------------------------------- /driver/csiplugin/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/server.go -------------------------------------------------------------------------------- /driver/csiplugin/settings/scale_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/settings/scale_config.go -------------------------------------------------------------------------------- /driver/csiplugin/tools/spectrum-scale-driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/tools/spectrum-scale-driver.py -------------------------------------------------------------------------------- /driver/csiplugin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/utils.go -------------------------------------------------------------------------------- /driver/csiplugin/utils/http_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/utils/http_utils.go -------------------------------------------------------------------------------- /driver/csiplugin/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/csiplugin/utils/utils.go -------------------------------------------------------------------------------- /driver/examples/cacheVolume/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/cacheVolume/pod.yaml -------------------------------------------------------------------------------- /driver/examples/cacheVolume/pvcnfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/cacheVolume/pvcnfs.yaml -------------------------------------------------------------------------------- /driver/examples/cacheVolume/pvcs3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/cacheVolume/pvcs3.yaml -------------------------------------------------------------------------------- /driver/examples/cacheVolume/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/cacheVolume/storageclass.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/snapshot/pvcfrmsnap_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/snapshot/pvcfrmsnap_static.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/snapshot/volsnap_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/snapshot/volsnap_static.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/snapshot/volsnapclass_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/snapshot/volsnapclass_static.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/clonefrompvc_static_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/clonefrompvc_static_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/clonefrompvc_static_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/clonefrompvc_static_independent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/pod_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/pod_static.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/pvc_static_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/pvc_static_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/pvc_static_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/pvc_static_independent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_expansion_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_expansion_independent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/storageclass_static_independent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/dynamicprovisioning/volume/vac_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/dynamicprovisioning/volume/vac_static.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/pvcfrmsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/pvcfrmsnap.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/snapshot/static_volsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/snapshot/static_volsnap.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/snapshot/static_volsnapcontent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/snapshot/static_volsnapcontent.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/volume/static_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/volume/static_pod.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/volume/static_pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/volume/static_pv.yaml -------------------------------------------------------------------------------- /driver/examples/staticVolume/staticprovisioning/volume/static_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/staticVolume/staticprovisioning/volume/static_pvc.yaml -------------------------------------------------------------------------------- /driver/examples/version1/snapshot/pvcfrmsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/snapshot/pvcfrmsnap.yaml -------------------------------------------------------------------------------- /driver/examples/version1/snapshot/pvcfrmsnap_rom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/snapshot/pvcfrmsnap_rom.yaml -------------------------------------------------------------------------------- /driver/examples/version1/snapshot/storageClassWithNodeClass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/snapshot/storageClassWithNodeClass.yaml -------------------------------------------------------------------------------- /driver/examples/version1/snapshot/volsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/snapshot/volsnap.yaml -------------------------------------------------------------------------------- /driver/examples/version1/snapshot/volsnapclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/snapshot/volsnapclass.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/clonefrompvc_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/clonefrompvc_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/clonefrompvc_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/clonefrompvc_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/podfileset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/podfileset.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/pvcfileset_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/pvcfileset_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/pvcfileset_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/pvcfileset_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_compress_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_compress_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_compress_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_compress_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_expansion_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_expansion_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_tier_dependent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_tier_dependent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/fileset/storageclassfileset_tier_independent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/fileset/storageclassfileset_tier_independent.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/lightweight/podlw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/lightweight/podlw.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/lightweight/pvclw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/lightweight/pvclw.yaml -------------------------------------------------------------------------------- /driver/examples/version1/volume/lightweight/storageclasslw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version1/volume/lightweight/storageclasslw.yaml -------------------------------------------------------------------------------- /driver/examples/version2/snapshot/pvcfrmsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/snapshot/pvcfrmsnap.yaml -------------------------------------------------------------------------------- /driver/examples/version2/snapshot/volsnap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/snapshot/volsnap.yaml -------------------------------------------------------------------------------- /driver/examples/version2/snapshot/volsnapclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/snapshot/volsnapclass.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/pod.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/pvc.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/storageclass.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/storageclass_compress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/storageclass_compress.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/storageclass_expansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/storageclass_expansion.yaml -------------------------------------------------------------------------------- /driver/examples/version2/volume/storageclass_tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/examples/version2/volume/storageclass_tier.yaml -------------------------------------------------------------------------------- /driver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/go.mod -------------------------------------------------------------------------------- /driver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/go.sum -------------------------------------------------------------------------------- /driver/licenses/apache-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/driver/licenses/apache-2.txt -------------------------------------------------------------------------------- /generated/installer/ibm-spectrum-scale-csi-operator-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/generated/installer/ibm-spectrum-scale-csi-operator-dev.yaml -------------------------------------------------------------------------------- /generated/installer/ibm-spectrum-scale-csi-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/generated/installer/ibm-spectrum-scale-csi-operator.yaml -------------------------------------------------------------------------------- /kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - operator/config/overlays/default 3 | -------------------------------------------------------------------------------- /operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/.gitignore -------------------------------------------------------------------------------- /operator/Dockerfile: -------------------------------------------------------------------------------- 1 | build/Dockerfile -------------------------------------------------------------------------------- /operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/Makefile -------------------------------------------------------------------------------- /operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/PROJECT -------------------------------------------------------------------------------- /operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/README.md -------------------------------------------------------------------------------- /operator/api/v1/csiscaleoperator_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/api/v1/csiscaleoperator_types.go -------------------------------------------------------------------------------- /operator/api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /operator/api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /operator/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/build/Dockerfile -------------------------------------------------------------------------------- /operator/bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/bundle.Dockerfile -------------------------------------------------------------------------------- /operator/config/crd/bases/csi.ibm.com_csiscaleoperators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/crd/bases/csi.ibm.com_csiscaleoperators.yaml -------------------------------------------------------------------------------- /operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /operator/config/manifests/bases/ibm-spectrum-scale-csi-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/manifests/bases/ibm-spectrum-scale-csi-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /operator/config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/overlays/cnsa-k8s/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/overlays/cnsa-k8s/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/overlays/cnsa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/overlays/cnsa/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/overlays/default/images_manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/overlays/default/images_manifest.yaml -------------------------------------------------------------------------------- /operator/config/overlays/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/overlays/default/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /operator/config/samples/csi_v1_csiscaleoperator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/samples/csi_v1_csiscaleoperator.yaml -------------------------------------------------------------------------------- /operator/config/samples/csiscaleoperators.csi.ibm.com_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/samples/csiscaleoperators.csi.ibm.com_cr.yaml -------------------------------------------------------------------------------- /operator/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/scc/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scc/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/scc/security_context_constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scc/security_context_constraint.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /operator/config/testing/debug_logs_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/debug_logs_patch.yaml -------------------------------------------------------------------------------- /operator/config/testing/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/testing/manager_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/manager_image.yaml -------------------------------------------------------------------------------- /operator/config/testing/pull_policy/Always.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/pull_policy/Always.yaml -------------------------------------------------------------------------------- /operator/config/testing/pull_policy/IfNotPresent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/pull_policy/IfNotPresent.yaml -------------------------------------------------------------------------------- /operator/config/testing/pull_policy/Never.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/config/testing/pull_policy/Never.yaml -------------------------------------------------------------------------------- /operator/controllers/config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/config/constants.go -------------------------------------------------------------------------------- /operator/controllers/config/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/config/resources.go -------------------------------------------------------------------------------- /operator/controllers/csiscaleoperator_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/csiscaleoperator_controller.go -------------------------------------------------------------------------------- /operator/controllers/internal/csiscaleoperator/csiscaleoperator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/internal/csiscaleoperator/csiscaleoperator.go -------------------------------------------------------------------------------- /operator/controllers/internal/csiscaleoperator/csiscaleoperator_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/internal/csiscaleoperator/csiscaleoperator_package.go -------------------------------------------------------------------------------- /operator/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/suite_test.go -------------------------------------------------------------------------------- /operator/controllers/syncer/csi_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/syncer/csi_node.go -------------------------------------------------------------------------------- /operator/controllers/syncer/csi_syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/syncer/csi_syncer.go -------------------------------------------------------------------------------- /operator/controllers/util/boolptr/boolptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/util/boolptr/boolptr.go -------------------------------------------------------------------------------- /operator/controllers/util/k8sutil/k8sutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/controllers/util/k8sutil/k8sutil.go -------------------------------------------------------------------------------- /operator/docs/dev/security/results.golint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/docs/dev/security/results.golint.txt -------------------------------------------------------------------------------- /operator/docs/dev/security/results.gosec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/docs/dev/security/results.gosec.json -------------------------------------------------------------------------------- /operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/go.mod -------------------------------------------------------------------------------- /operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/go.sum -------------------------------------------------------------------------------- /operator/hacks/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/boilerplate.go.txt -------------------------------------------------------------------------------- /operator/hacks/csv_copy_cr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/csv_copy_cr.py -------------------------------------------------------------------------------- /operator/hacks/csv_copy_crd_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/csv_copy_crd_descriptions.py -------------------------------------------------------------------------------- /operator/hacks/csv_copy_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/csv_copy_docs.py -------------------------------------------------------------------------------- /operator/hacks/csv_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/csv_prep.py -------------------------------------------------------------------------------- /operator/hacks/health_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/health_check.go -------------------------------------------------------------------------------- /operator/hacks/package_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/hacks/package_operator.py -------------------------------------------------------------------------------- /operator/licenses/apache-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/licenses/apache-2.txt -------------------------------------------------------------------------------- /operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/operator/main.go -------------------------------------------------------------------------------- /tools/ansible/common/dev-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/common/dev-env.yaml -------------------------------------------------------------------------------- /tools/ansible/common/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/common/requirements-dev.txt -------------------------------------------------------------------------------- /tools/ansible/common/requirements-run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/common/requirements-run.txt -------------------------------------------------------------------------------- /tools/ansible/common/runtime-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/common/runtime-env.yaml -------------------------------------------------------------------------------- /tools/ansible/deploy-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy-playbook.yaml -------------------------------------------------------------------------------- /tools/ansible/deploy/hacks/deploycsioperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/hacks/deploycsioperator.py -------------------------------------------------------------------------------- /tools/ansible/deploy/hacks/templates/mmlscluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/hacks/templates/mmlscluster -------------------------------------------------------------------------------- /tools/ansible/deploy/hacks/templates/mmlsfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/hacks/templates/mmlsfs -------------------------------------------------------------------------------- /tools/ansible/deploy/hacks/templates/mmlsnodeclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/hacks/templates/mmlsnodeclass -------------------------------------------------------------------------------- /tools/ansible/deploy/nodeprep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/nodeprep.yaml -------------------------------------------------------------------------------- /tools/ansible/deploy/preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/preflight.yaml -------------------------------------------------------------------------------- /tools/ansible/deploy/rest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/deploy/rest.yaml -------------------------------------------------------------------------------- /tools/ansible/dev-env-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/dev-env-playbook.yaml -------------------------------------------------------------------------------- /tools/ansible/generate-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/generate-playbook.yaml -------------------------------------------------------------------------------- /tools/ansible/generate/create_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/generate/create_files.yaml -------------------------------------------------------------------------------- /tools/ansible/versioning-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/ansible/versioning-playbook.yaml -------------------------------------------------------------------------------- /tools/generate_pv_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/generate_pv_yaml.sh -------------------------------------------------------------------------------- /tools/generate_static_provisioning_yamls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/generate_static_provisioning_yamls.sh -------------------------------------------------------------------------------- /tools/generate_volsnapcontent_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/generate_volsnapcontent_yaml.sh -------------------------------------------------------------------------------- /tools/scripts/ci/ci-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/ci-env -------------------------------------------------------------------------------- /tools/scripts/ci/fold_ouput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/fold_ouput.sh -------------------------------------------------------------------------------- /tools/scripts/ci/install_minikube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/install_minikube.sh -------------------------------------------------------------------------------- /tools/scripts/ci/install_operator-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/install_operator-sdk.sh -------------------------------------------------------------------------------- /tools/scripts/ci/lint_operator-courier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/lint_operator-courier.sh -------------------------------------------------------------------------------- /tools/scripts/ci/travis_before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/ci/travis_before_script.sh -------------------------------------------------------------------------------- /tools/scripts/push_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/scripts/push_app.sh -------------------------------------------------------------------------------- /tools/storage-scale-driver-snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/storage-scale-driver-snap.sh -------------------------------------------------------------------------------- /tools/volume_migration_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/README.md -------------------------------------------------------------------------------- /tools/volume_migration_scripts/README_migration_cnsa_primary_removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/README_migration_cnsa_primary_removal.md -------------------------------------------------------------------------------- /tools/volume_migration_scripts/README_migration_csi_primary_removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/README_migration_csi_primary_removal.md -------------------------------------------------------------------------------- /tools/volume_migration_scripts/README_migration_csi_to_cnsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/README_migration_csi_to_cnsa.md -------------------------------------------------------------------------------- /tools/volume_migration_scripts/migration_cnsa_primary_removal.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/migration_cnsa_primary_removal.bash -------------------------------------------------------------------------------- /tools/volume_migration_scripts/migration_csi_primary_removal.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/migration_csi_primary_removal.bash -------------------------------------------------------------------------------- /tools/volume_migration_scripts/migration_csi_to_cnsa.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/ibm-spectrum-scale-csi/HEAD/tools/volume_migration_scripts/migration_csi_to_cnsa.bash --------------------------------------------------------------------------------