├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── README.md ├── developer-guide │ └── README.md ├── mantav2.md ├── operator-guide │ ├── README.md │ ├── architecture.md │ ├── deployment.md │ ├── maintenance.md │ └── mantav2-migration.md ├── sample-training.md └── user-guide │ ├── .htaccess │ ├── README.md │ ├── commands-reference.md │ ├── rbac.md │ ├── sdks.md │ └── storage-reference.md ├── package.json └── tools └── jr-manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/developer-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/developer-guide/README.md -------------------------------------------------------------------------------- /docs/mantav2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/mantav2.md -------------------------------------------------------------------------------- /docs/operator-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/operator-guide/README.md -------------------------------------------------------------------------------- /docs/operator-guide/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/operator-guide/architecture.md -------------------------------------------------------------------------------- /docs/operator-guide/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/operator-guide/deployment.md -------------------------------------------------------------------------------- /docs/operator-guide/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/operator-guide/maintenance.md -------------------------------------------------------------------------------- /docs/operator-guide/mantav2-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/operator-guide/mantav2-migration.md -------------------------------------------------------------------------------- /docs/sample-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/sample-training.md -------------------------------------------------------------------------------- /docs/user-guide/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/.htaccess -------------------------------------------------------------------------------- /docs/user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/README.md -------------------------------------------------------------------------------- /docs/user-guide/commands-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/commands-reference.md -------------------------------------------------------------------------------- /docs/user-guide/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/rbac.md -------------------------------------------------------------------------------- /docs/user-guide/sdks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/sdks.md -------------------------------------------------------------------------------- /docs/user-guide/storage-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/docs/user-guide/storage-reference.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/package.json -------------------------------------------------------------------------------- /tools/jr-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/manta/HEAD/tools/jr-manifest.json --------------------------------------------------------------------------------