├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── confd ├── conf.d │ ├── chaos.toml │ ├── client.toml │ ├── conformity.toml │ ├── janitor.toml │ ├── log4j.toml │ ├── simianarmy.toml │ └── volumeTagging.toml └── templates │ ├── chaos.properties.tmpl │ ├── client.properties.tmpl │ ├── conformity.properties.tmpl │ ├── janitor.properties.tmpl │ ├── log4j.properties.tmpl │ ├── simianarmy.properties.tmpl │ └── volumeTagging.properties.tmpl ├── docs ├── api.md ├── configuration-properties.md ├── configuration.md ├── notifications.md └── usage.md └── entrypoint.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/README.md -------------------------------------------------------------------------------- /confd/conf.d/chaos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/chaos.toml -------------------------------------------------------------------------------- /confd/conf.d/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/client.toml -------------------------------------------------------------------------------- /confd/conf.d/conformity.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/conformity.toml -------------------------------------------------------------------------------- /confd/conf.d/janitor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/janitor.toml -------------------------------------------------------------------------------- /confd/conf.d/log4j.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/log4j.toml -------------------------------------------------------------------------------- /confd/conf.d/simianarmy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/simianarmy.toml -------------------------------------------------------------------------------- /confd/conf.d/volumeTagging.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/conf.d/volumeTagging.toml -------------------------------------------------------------------------------- /confd/templates/chaos.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/chaos.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/client.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/client.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/conformity.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/conformity.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/janitor.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/janitor.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/log4j.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/log4j.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/simianarmy.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/simianarmy.properties.tmpl -------------------------------------------------------------------------------- /confd/templates/volumeTagging.properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/confd/templates/volumeTagging.properties.tmpl -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/configuration-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/docs/configuration-properties.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/docs/notifications.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/docs/usage.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/docker-simianarmy/HEAD/entrypoint.sh --------------------------------------------------------------------------------