├── .gitignore ├── LICENSE ├── README.md ├── arm_compute_ops.js ├── azure_constants.js ├── dingo.js ├── dingo_job.js ├── dingo_job_pipeline.js ├── dingo_job_types.js ├── dingo_test.js ├── dingo_utils.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/README.md -------------------------------------------------------------------------------- /arm_compute_ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/arm_compute_ops.js -------------------------------------------------------------------------------- /azure_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/azure_constants.js -------------------------------------------------------------------------------- /dingo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo.js -------------------------------------------------------------------------------- /dingo_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo_job.js -------------------------------------------------------------------------------- /dingo_job_pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo_job_pipeline.js -------------------------------------------------------------------------------- /dingo_job_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo_job_types.js -------------------------------------------------------------------------------- /dingo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo_test.js -------------------------------------------------------------------------------- /dingo_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/dingo_utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmspring/chaos-dingo/HEAD/package.json --------------------------------------------------------------------------------