Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/google/marmot
Marmot workflow execution engine
https://github.com/google/marmot
devops devops-services devops-tools go golang google google-cloud kubernetes kubernetes-operator network network-monitoring sre
Last synced: 3 months ago
JSON representation
Marmot workflow execution engine
- Host: GitHub
- URL: https://github.com/google/marmot
- Owner: google
- License: apache-2.0
- Archived: true
- Created: 2017-08-10T18:51:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-06T16:20:46.000Z (about 7 years ago)
- Last Synced: 2024-06-20T14:38:09.688Z (5 months ago)
- Topics: devops, devops-services, devops-tools, go, golang, google, google-cloud, kubernetes, kubernetes-operator, network, network-monitoring, sre
- Language: Go
- Homepage:
- Size: 3.06 MB
- Stars: 185
- Watchers: 15
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - google/marmot - Marmot workflow execution engine (Go)
README
# Marmot
## One line summary
Marmot is a service for processing workflows targeting DevOps/SRE needs.**NOTICE** This product is still in development and is not production ready.
## The long summary
Marmot is a GRPC service that executes workflow descriptions against
infrastructure (network devices, servers, kubernetes pods, ...).
This allows top level services/scripts to simply test the output for the correct
workflow descriptors instead of complex mocking, concurrency checks, ...
This in turn provides code reuse and reduces code duplication. It also provides
safety by having a single system responsible for execution and not hundreds of
scripts/services.
Mamort provides:
* Structured workflow description language with health checks
* Support for concurrency inside workflows
* Plugin architecture allows feature expansion/updates without service rebuilds
* Streaming execution updates
* Clients for Go and Python
* Support for emergency pausing or stopping of all workflows, classes of
workflows or single workflows
* Web UI for viewing workflows
Marmot is based on an internal Google project which processes tens of thousands
of workflows per week for several internal SRE/DevOps organizations.
## Use cases
Marmot has been designed as a DevOps/SRE tool for handling
infrastructure changes, though it is not limited to this role. Marmot is well
suited for any type of operation that must be performed in steps with certain
pacing and may require state checks for health.
Examples include:
* Updating packages on servers
* Rolling out a new service version on Kubernetes
* Configuration changes to routing infrastructure
* Updating firmware on devices
* Turning up new devices via a mix of BOOTP/Console/SSH
* Automatic acceptance of code changes into a master repository from staging
* ...
## Disclaimers
This is not an official Google product.