├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | script: 7 | - awesome_bot README.md --allow-redirect --white-list linkedin.com,kismatic.com,crunchbase.com --allow-dupe twitter.com,github.com,youtube.com,creativecommons.org 8 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing Guidelines: 2 | 3 | We appreciate and recognize all contributors. 4 | 5 | Contribution Guidelines 6 | * To add to the list: Submit a pull request 7 | * To remove from the list: Submit a pull request 8 | * Want to change something: Submit a pull request 9 | * Want to try something else: Submit a pull request 10 | * Don't know what to do: Submit a pull request 11 | 12 | * Each item should be limited to one link 13 | * The link should be the name of the package or project or website 14 | * Descriptions should be clear and concise (read it out loud to be sure) 15 | * Descriptions should follow the link, on the same line 16 | * If you want to add more than one link, please don't do all PR on the exact same line, it usually results in conflicts and your PR cannot be automatically merged... 17 | * Please contribute links to packages/projects you have used or are familiar with. This will help ensure high-quality entries. 18 | 19 | Quality standard 20 | 21 | To be on the list, it would be nice if entries adhere to these quality standards: 22 | 23 | * Generally useful to the community 24 | * Solves a real problem (even a small one) 25 | * If it is a WIP (work in progress, not safe for production), mention it. 26 | 27 | Abstract taken from [awesome-docker](https://github.com/veggiemonk/awesome-docker/blob/master/CONTRIBUTING.md) 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DevOps Glossary [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | [![Build Status](https://travis-ci.org/TheRemoteLab/devops-glossary.svg?branch=master)](https://travis-ci.org/TheRemoteLab/devops-glossary) 4 | 5 | 6 | The Complete DevOps Glossary - Covering DevOps from A to Z. 7 | 8 | " Alphabetically arranged reference work that gives brief definitions of words related to a specific topic. Also called controlled vocabulary." - [Source](http://www.businessdictionary.com/definition/glossary.html#ixzz3x2CyAJi6) 9 | 10 | ![glossary_logo](https://cloud.githubusercontent.com/assets/8342133/12264204/20b3d262-b95b-11e5-880d-c052b11a5a0a.png) 11 | 12 | 13 | ## Choose your alphabet: 14 | 15 | [ A ](#a) | [ B ](#b) | [ C ](#c) | [ D ](#d) | [ E ](#e) | [ F ](#f) | [ G ](#g) | [ H ](#h) | [ I ](#i) | [ J ](#j) | [ K ](#k) | [ L ](#l) | [ M ](#m) | [ N ](#n) | [ O ](#o) | [ P ](#p) | [ Q ](#q) | [ R ](#r) | [ S ](#s) | [ T ](#t) | [ U ](#u) | [ V ](#v) | [ W ](#w) | [ X ](#x) | [ Y ](#y) | [ Z ](#z) | 16 | 17 | # A 18 | - [AWS](https://aws.amazon.com) - A cloud computing platform offering ready to use web services which are loosely coupled. 19 | - [Ansible](http://www.ansible.com/) - An agent-less orchestration engine that can automate application and systems. 20 | - [Aptly](https://github.com/smira/aptly) - A Debian repository management tool 21 | - [Artifactory](https://github.com/Netflix/asgard/wiki) - JFrog’s open source binary repository management product with support for Apache Maven artifacts. 22 | - [Asgard](https://github.com/Netflix/asgard/wiki) - A netflix web interface tool for AWS Cloud Management and application deployment. 23 | - [Atom](https://atom.io/) - Atom is a text editor that's modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file. 24 | - [Awsbox](http://awsbox.org/) - A featherweight DYI PaaS on top of awscloud EC2 for deploying node apps. 25 | 26 | # B 27 | - [Beats](https://www.elastic.co/products/beats) - An open source collectors for log files, infrastructure metrics, and other important types of data agitation. 28 | - [Berkshelf](http://berkshelf.com) - Cookbook source manager for chef, similar to a bundler for ruby. 29 | - [Buildbot](http://buildbot.net) - An open-source framework for automating software build, test and release process. 30 | - [Bento](https://www.bento.io) - A project that encapsulates Packer templates for building Vagrant base boxes. 31 | - [BuildMaster](http://inedo.com/buildmaster) - An automated deployment tool. It combines features to manage and automate processes primarily related to continuous integration, database change scripts, and production deployments. 32 | - [Brooklyn](https://brooklyn.apache.org) - Focused on deployment & post deployment life-cycle management, aware of network typologies integrates with clouds. 33 | - [Barkeep](http://getbarkeep.org) - Code review tool for git projects, focused on code reviewing, can support both pre & post commit workflows. 34 | 35 | # C 36 | - [Consul](https://www.consul.io) - Makes it simple for services to register themselves and to discover other services via a DNS or HTTP interface. 37 | - [Chef](http://chef.io) - Configuration management tool which uses a pure-Ruby, DSL for writing system configuration recipes. 38 | - [CoreOS](https://coreos.com) - Lightweight OS that support containers out of the box. Can be used as base OS to run your own PaaS 39 | - [CfEngine](https://cfengine.com/) - First of its kind. Configuration Management tool, automates large scale, complex infrastructure. 40 | - [Collectd](https://collectd.org/) - Demon to collect system performance statistics periodically & provides tons of plugins to analyze values. 41 | - [Chocolatey](https://chocolatey.org/) - It is apt-get for windows. Can install packages & dependencies over CLI. 42 | - [CruiseControl](cruisecontrol.sourceforge.net/) - A CI server written in #Ruby with a focus on simplicity & being easy to hack. 43 | - [Capistrano](capistranorb.com/) - A remote server automation and deployment tool written in Ruby. 44 | - [Credmgr](https://github.com/treyka/credmgr) - Securely manage privileged account credentials via Shamir secret sharing. Its like one passwd for DevOps. 45 | - [ConDep](www.condep.io/) - An opensource infrastructure configuration & deployment DSL specifically targeted (not limited) to Windows platform. 46 | - [CMB(Cloud Message Bus)](https://github.com/Comcast/cmb) - A highly available, horizontally scalable queuing & notification service compatible to AWS SQS, SNS. 47 | 48 | # D 49 | - [Docker](https://www.docker.com/) - Package an application with all of its dependencies into a standardized unit for software development. Build, Ship, Run. 50 | - [Deis](http://deis.io/) - Open Source Application Platform For Public and Private Clouds. Its built on Docker & CoreOs. 51 | - [Drone](https://drone.io) - A Continuous Integration platform built on Docker, written in Go. 52 | - [Dokku](https://github.com/dokku/dokku) - Docker powered mini-Heroku, a smallest PaaS implementation you've ever seen around 100 lines of Bash. 53 | - [Deploykit](https://github.com/FuturePublishing/future-deploykit) - Collection of Ruby daemons flying in close formation. AKA our startling message-based deploy environment. 54 | - [Djangy](https://www.crunchbase.com/organization/djangy) - An open source cloud hosting service for Python/Django web apps. Its like Heroku for Python/Django. 55 | - [Diamond](http://diamond.readthedocs.io/en/latest/) - Diamond is a python daemon that collects system metrics and publishes them to Graphite (and others). 56 | 57 | # E 58 | - [Etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. 59 | - [Eucalyptus](http://www8.hp.com/us/en/cloud/helion-eucalyptus-overview.html) - An open source software for building AWS - compatible private and hybrid clouds. 60 | 61 | # F 62 | - [Fig](https://github.com/mfoemmel/fig) - A package management tool, similar to APT, language agnostic, faster and works well with both executable and libraries. 63 | - [Foreman](theforeman.org/) - A complete lifecycle management tool for physical and virtual servers. 64 | - [Fpm](https://github.com/jordansissel/fpm) - Effing package management! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity. 65 | - [Flynn](https://flynn.io/) - An open source PaaS platform built on Docker awesomely manages deploying, scaling your applications. 66 | - [Fabric](www.fabfile.org/) - A command-line tool for streamlining use of SSH for application deployment or systems administration tasks. 67 | - [FAI Fully Automatic Installer](fai-project.org/) - Tool for mass unattained deployments of Linux. 68 | - [Flannel](https://coreos.com/flannel) - etcd backed network fabric for containers 69 | 70 | # G 71 | - [Git](https://git-scm.com/) - An awesome tool to version your source code and collaborate. 72 | - [Graphite](graphite.wikidot.com/) - A visualization tool for statistics. One can create customizable reports and dashboards. 73 | - [Ganglia](ganglia.info/) - A salable distributed monitoring system for high-performance computing systems such as clusters & grids. 74 | - [Gradle](gradle.org/) - A project automation tool that builds upon the concepts of #Apache Ant and Apache Maven. 75 | - [Grafana](grafana.org/) - An open source feature rich metrics dashboard and graph editor for Graphite, InfluxDB & OpenTSDB. 76 | - [GoCD](https://www.go.cd/) - release management tool,build from ground up with pipelines in mind & makes easy to model complex deployment work-flow. 77 | 78 | # H 79 | - [Heroku](https://www.heroku.com/) - Platform as a service (PaaS) that enables developers to build and run applications entirely in the cloud. 80 | 81 | # I 82 | - [Icinga](https://www.icinga.org/) - A monitoring system checking hosts & services you specify & notifying when things go wrong & they recover. 83 | 84 | # J 85 | - [Jenkins](https://jenkins-ci.org/) - It is an open-source, lightweight CI tool written in Java, with high extensibility and a fast release cycle. 86 | - [Jcloud](https://jclouds.apache.org/) - Apache jclouds, an open source multi-cloud toolkit for the Java platform, apps are portable across clouds. 87 | - [Juju](https://jujucharms.com/) - An orchestration tool allows software to be quickly deployed, integrated & scaled public/private/hybrid cloud. 88 | 89 | # K 90 | - [Kubernetes](http://kubernetes.io/) - An opensource system for managing containerized applications providing deployment & scaling of apps. 91 | - [Kickstart](http://kickstart-tools.sourceforge.net) - Uses bash scripts to provision machines over ssh, with no client installation on the target. 92 | - [Kibana](https://www.elastic.co/products/kibana) - an open source (Apache Licensed), browser based analytic and search dashboard for Elasticsearch. 93 | - [Kafka](http://kafka.apache.org/) - distributed, partitioned, replicated commit log service. 94 | 95 | # L 96 | - [Logstash](https://www.elastic.co/products/logstash) - A data pipeline that helps you process logs and other event data from a variety of systems. 97 | - [Log.io](http://log.io/) - A Real-time log monitoring in your browser. Broadcasting logs to the web clients. 98 | - [Loom](https://github.com/bfirsh/loom) - Does stuff Puppet doesn't do well or at all bootstrapping machines deploying code & installing reusable modules. 99 | - [Logster](https://github.com/etsy/logster) - Utility for reading logs & generating metrics to configurable outputs. Graphite, CloudWatch, Nagios & stdout. 100 | 101 | # M 102 | - [Memcached](memcached.org/) - An open-source high performance, distributed memory object caching system. 103 | - [Mcollective](https://puppetlabs.com/mcollective) - A framework for building server orchestration or parallel job execution systems. 104 | - [Mina](nadarei.co/mina/) - Deployment tool, lets you build and run scripts to manage your app deployments on servers via SSH. 105 | 106 | # N 107 | - [Nomad](https://www.nomadproject.io/) - A Hashicorp product; is a cluster manager & scheduler designed for microservices and batch workloads. 108 | 109 | # O 110 | - [Openstack](https://www.openstack.org/) - An open source, massively salable cloud operating system used for building private & public cloud. 111 | - [Opsbot](https://opsbot.com/) - A pluggable, configurable bot for improving communication in operations. 112 | - [OpsGenie](https://www.opsgenie.com/) - Tools you need to design meaningful, actionable alerts and ensure the right people are notified. 113 | - [OSV](http://osv.io) - An operating System for lightweight virtual machines, designed for ground up to run single application, similar to CoreOS. 114 | - [Otto](https://www.ottoproject.io/) - successor to Vagrant is single solution to develop, deploy application with firstclass support to microservices. 115 | - [Orc](https://github.com/tim-group/orc) - A model driven orchestration tool for the deployment of application clusters written in Ruby. 116 | - [Opskelaton](https://github.com/opskeleton/opskeleton) - Bootstrap DevOps infra with some opinionated defaults(vagrant chef puppet) standard development guidelines. 117 | - [Overcast](https://github.com/andrewchilds/overcast) - CLI for ease to spinup configure & manage clusters without learning curve or complexity of existing management tools. 118 | - [Openshift](https://www.openshift.com/) - Platform-as-a-Service (PaaS) that allows developers to quickly develop, host, and scale applications in a cloud environment. 119 | 120 | # P 121 | - [Packer](https://www.packer.io/) - A tool for creating identical machine images for multiple platforms from a single source configuration 122 | - [Pagerduty](https://www.pagerduty.com/) - A tool which would help us to increase the uptime of our apps, services, and infrastructure. 123 | - [Poni](http://melor.github.io/poni/) - Systems management tool for defining, deploying and verifying complex multi-node computer systems. 124 | - [Pulp](www.pulpproject.org/) - A platform for managing repositories of content, such as software packages. 125 | - [Prometheus](http://prometheus.io/) - open-source service monitoring system and time series database. 126 | 127 | # Q 128 | 129 | # R 130 | - [RabbitMQ](https://www.rabbitmq.com/) - RabbitMQ is a queuing tool for DevOps engineers. Supports a large no. of development platforms. 131 | - [Rundeck](rundeck.org/) - A cross-platform opensource software, helps automate ad-hoc & routine procedures in data-center or cloud environment. 132 | - [rkt](https://github.com/coreos/rkt) - CLI for running app containers on Linux. rkt is designed to be composable, secure, and fast. 133 | - [Rudder](www.rudder-project.org/) - An easy to use, web-driven, role-based solution for IT Infrastructure Automation. 134 | - [Rex](https://www.rexify.org/) - An agent less orchestration tool written in simple perl. 135 | - [Riemann](http://riemann.io/) - Riemann monitors distributed systems. 136 | 137 | # S 138 | - [Sensu](https://sensuapp.org/) - A simple & scalable monitoring framework which is designed for cloud. 139 | - [Simian Army](https://github.com/Netflix/SimianArmy) - A tool for testing & promoting infrastructure tolerance & high availability. 140 | - [Snort](https://www.snort.org/) - An open-source IPS. It provides real-time traffic analysis and packet logging for DevOps engineers. 141 | - [SumoLogic](https://www.sumologic.com/) - Centralized Log Analysis tool, which scale to any data volume and query performance. 142 | - [Serf](https://www.serfdom.io/) - A lightweight & decentralized solution for cluster membership, failure detection & orchestration. 143 | - [SaltStack](http://saltstack.com/) - Configuration Management software, delivers fast, scalable event-driven infrastructure automation & predictive cloud orchestration. 144 | - [Slaughter](https://github.com/skx/slaughter) - A perl tool for automating configuration maintenance & management of large number of systems. 145 | - [StackStorm](https://stackstorm.com/) - Event-driven automation used for auto-healing, security responses, troubleshooting, complex deployments. 146 | - [Sequencer](pv-bull.github.io/sequencer/) - Open-Source Software that can ping, power off and power on your whole cluster. 147 | - [Sunzi](https://github.com/kenn/sunzi) - Shell-based provisioning tool which does not try to do anything else. Has no dependency other than shell. 148 | - [Sysdig](www.sysdig.org/) - An open source, system level exploration: capture system state & activity in linux instance save, filter & analyze. 149 | - [Semaphore](https://semaphoreci.com/) - A hosted continuous integration and deployment service for open source and private projects. 150 | - [Sublime-Text](https://www.sublimetext.com/) - Sublime Text is a cross-platform source code editor with a Python application programming interface (API). It natively supports many programming languages and markup languages, and its functionality can be extended by users with plugins, typically community-built. 151 | - [SignalFx](https://signalfx.com/) - Monitoring and Operational Intelligence for the Cloud. 152 | 153 | # T 154 | - [Terraform](https://www.terraform.io/) - A tool used in building, changing, and versioning the infrastructure across platforms. 155 | - [Test Kitchen](kitchen.ci/ ) - A test harness tool to execute your configured code on one or more platforms in isolation. 156 | - [Tsuru](https://tsuru.io/) - An extensible and open source Platform as a Service; that uses Docker to make deploys simple & fast. 157 | - [TeamCity](https://www.jetbrains.com/teamcity/) - A feature packed CI tool with out-of-the-box support for java, ruby .Net, & many other languages. 158 | - [Travis CI](https://travis-ci.org/) - A Continuos Integration tool easy to integrate with Github Projects 159 | 160 | # U 161 | 162 | # V 163 | - [Vagrant](https://www.vagrantup.com/) - It is a cross platform tool to create, boot, configure and destroy development environments. 164 | - [Veewee](https://github.com/jedi4ever/veewee) - A tool for easily & repeatedly building custom Vagrant base boxes, KVMs, & virtual machine images. 165 | - [Vagrant-lxc](https://github.com/fgrehm/vagrant-lxc) - Vagrant plugin that allows it to control and provision Linux Containers as an alternative to the built in VirtualBox provider for Linux host. 166 | - [Vaurien](https://github.com/mozilla-services/vaurien) - A Chaos Monkey for TCP conn. Randomly disconnects/stalls TCP connections in app to test tolerance and HA. 167 | - [VMFest](hackersome.com/p/arohner/vmfest) - a PalletOps project turns VirtualBox into light-weight cloud provider. Useful in developing cloud automation. 168 | 169 | # W 170 | - [Weave](https://github.com/weaveworks/weave) - Virtual network that connects Docker containers deployed across multiple hosts & enables automatic discovery. 171 | 172 | # X 173 | 174 | # Y 175 | 176 | # Z 177 | - [Zabbix](www.zabbix.com/) - An opensource, enterprise-class network monitoring framework. 178 | - Zookeeper - A centralized service for maintaining configuration information, naming, providing group services etc. 179 | 180 | 181 | ## Contributing: 182 | 183 | Contributions are welcome! 184 | 185 | This repo is just getting started, please contribute to make it super fun. 186 | 187 | Check out the [Contributing Guidelines](https://github.com/theremotelab/devops-glossary/blob/master/CONTRIBUTING.md). 188 | 189 | ## License: 190 | 191 | devops-glossary by The Remote Lab is licensed under the Apache 2.0 License. 192 | 193 | See the [License](https://github.com/TheRemoteLab/devops-glossary/blob/master/LICENSE) for more info. 194 | --------------------------------------------------------------------------------