All Projects → stelligent → Mu

stelligent / Mu

Licence: mit
A full-stack DevOps on AWS framework

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Mu

artifact-promotion-plugin
A simple Jenkins plugin to promote artifacts.
Stars: ✭ 29 (-96.94%)
Mutual labels:  pipeline, continuous-delivery
swarmci
Swarm CI - Docker Swarm-based CI system or enhancement to existing systems.
Stars: ✭ 48 (-94.94%)
Mutual labels:  pipeline, continuous-delivery
ecs-mesh-workshop
This handy workshop help the customers to quickly launch ECS with service mesh support on top of mixed type of instance in all commercial regions (include China), and also provides hands-on tutorials with best practices. It can be customized easily as per need.
Stars: ✭ 17 (-98.21%)
Mutual labels:  cloudformation, ecs
Microservices Demo
Deployment scripts & config for Sock Shop
Stars: ✭ 2,939 (+210.02%)
Mutual labels:  microservice, ecs
Git Push Deploy
Simple Automated CI/CD Pipeline for GitHub and GitLab Projects
Stars: ✭ 21 (-97.78%)
Mutual labels:  pipeline, continuous-delivery
bodywork-ml-pipeline-project
Deployment template for a continuous training pipeline.
Stars: ✭ 22 (-97.68%)
Mutual labels:  pipeline, continuous-delivery
bump-everywhere
🚀 Automate versioning, changelog creation, README updates and GitHub releases using GitHub Actions,npm, docker or bash.
Stars: ✭ 24 (-97.47%)
Mutual labels:  pipeline, continuous-delivery
Unity resources
A list of resources and tutorials for those doing programming in Unity.
Stars: ✭ 170 (-82.07%)
Mutual labels:  ecs, pipeline
Jx
Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Cloud Native pipelines from Tekton
Stars: ✭ 4,041 (+326.27%)
Mutual labels:  pipeline, continuous-delivery
ecs-airflow
Cloudformation templates for deploying Airflow in ECS
Stars: ✭ 37 (-96.1%)
Mutual labels:  cloudformation, ecs
Fabric8
fabric8 is an open source microservices platform based on Docker, Kubernetes and Jenkins
Stars: ✭ 1,783 (+88.08%)
Mutual labels:  microservice, continuous-delivery
Argo Cd
Declarative continuous deployment for Kubernetes.
Stars: ✭ 7,887 (+731.96%)
Mutual labels:  pipeline, continuous-delivery
Docker For All
Docker applied in development, devops, testing, product management etc.
Stars: ✭ 88 (-90.72%)
Mutual labels:  microservice, continuous-delivery
bitops
Automate the provisioning and configuration of cloud infrastructure.
Stars: ✭ 28 (-97.05%)
Mutual labels:  cloudformation, continuous-delivery
Ecs Deploy
ecs-deploy is a continuous deployment platform for AWS ECS. It automates deploys based a simple json/yaml file which can be integrated in your CI/CD
Stars: ✭ 236 (-75.11%)
Mutual labels:  ecs, continuous-delivery
aws-cloudformation-simplified
AWS CloudFormation - Simplified | Hands On Learning !!
Stars: ✭ 51 (-94.62%)
Mutual labels:  cloudformation, continuous-delivery
Awesome Aws
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome.
Stars: ✭ 9,895 (+943.78%)
Mutual labels:  ecs, cloudformation
Ecs Nginx Proxy
Reverse proxy for AWS ECS. Lets you address your docker containers by sub domain.
Stars: ✭ 93 (-90.19%)
Mutual labels:  ecs, continuous-delivery
pipelines-as-code
Pipelines as Code
Stars: ✭ 37 (-96.1%)
Mutual labels:  pipeline, continuous-delivery
Gaia
Build powerful pipelines in any programming language.
Stars: ✭ 4,534 (+378.27%)
Mutual labels:  pipeline, continuous-delivery

Deprecation Notice

Mu is no longer being maintained. We appreciate the support and interest over the past few years. This repository will be archived in the future. Releases will remain available for the foreseeable future. If you are starting a new project on AWS and looking for alternatives to Mu...

We recently did a podcast on Mutato, Mu, and OSS at Stelligent that may be of interest.

Non-Stelligent OSS similar to Mu:

Additionally, check out RFC 049 of CDK. CDK is where a lot of us are banking the future of AWS deployments are.

These alternatives either didn't exist or were in active development when we started Mu. The increased competition, new ideas, and updates to the ecosystem have made the decision easier to discontinue support for Mu.


Build Status Join the chat at https://gitter.im/stelligent/mu Go Report Card

Why?

Both Amazon ECS (Elastic Container Service) and Amazon EKS (Elastic Container Service for Kubernetes) provide excellent platforms for deploying microservices as containers. The challenge however is that there is a significant learning curve for microservice developers to deploy their applications in an efficient manner. Specifically, they must learn to use CloudFormation to orchestrate the management of EKS, ECS, ECR, EC2, ELB, VPC, and IAM resources. Additionally, tools like CodeBuild and CodePipeline must be mastered to create a continuous delivery pipeline for their microservices.

To address these challenges, this tool was created to simplify the declaration and administration of the AWS resources necessary to support microservices. Similar to how the Serverless Framework improved the developer experience of Lambda and API Gateway, this tool makes it easier for developers to use EKS or ECS as a microservices platform.

The mu tool uses CloudFormation stacks to manage all resources it creates. Additionally, mu will not create any databases or other AWS resources to support itself. It will only create resources (via CloudFormation) necessary to run your microservices. This means at any point you can stop using mu and continue to manage the AWS resources that it created via AWS tools such as the CLI or the console.

Architecture Diagram

Demo

Watch the 90 second demo below to see mu in action!

Demo

Get Started!

Requires AWS Credentials are configured locally (or you are using something like aws-vault).

Install latest version to /usr/local/bin (or for additional options, see wiki):

curl -s https://getmu.io/install.sh | sudo sh

Verify installation

mu -v
mu version 1.5.10

Assuming your project already has a Dockerfile, you can initialize your mu.yml file with: mu init. More details available in the quickstart.

What's next?

Check out the examples to see snippets of mu.yml configuration files that you can use in your own project:

  • Basic - Simple website with continuous delivery pipeline deploying to dev and prod environments
  • EKS - Demonstration of using EKS provider for mu
  • Test Automation - Automating end-to-end testing via Newman
  • RDS Database - Defining a database for a service
  • Env Variables - Defining environment variables for the service
  • HTTPS - Enable HTTPS on the ALB for an environment
  • DNS - Associate Route53 resource record with ALB for an environment
  • VPC Target - Targeting an existing VPC for an environment
  • VPN Connection - Demonstration of adding VPN via CloudFormation
  • Custom CloudFormation - Demonstration of adding custom AWS resources via CloudFormation
  • Traditional Infrastructure - Demonstration of using EC2 + CodeDeploy rather than ECS for running services

Refer to the wiki for complete details on the configuration of mu.yml and the cli usage:

  • Environments - managing VPCs, ECS clusters, container instances and ALBs
  • Services - managing ECS service configuration
  • Databases - managing database configuration
  • Pipelines - managing continuous delivery pipelines
  • IAM - managing IAM roles that mu uses
  • EKS - using EKS instead of ECS for environment provider
  • CLI - details about using the CLI
  • Custom CloudFormation - details about customizing the CloudFormation that is generated by mu.
  • Service Discovery - details about configuring and using service discovery
  • Traditional Infrastructure - details about using traditional infrastructure (EC2 instances) for running services, rather than ECS and Docker.

Support

Need help? Check out the FAQ to try to find an answer to your question. If you can't find an answer there, ask on Gitter!

Contributing

Want to contribute to Mu? Awesome! Check out the contributing guidelines to get involved.

Building from source

  • Ensure AWS CLI is configured with an access key, secret access key, and region.
  • Install Go tools 1.10+ - (https://golang.org/doc/install)
  • If you will be publishing a new release to GitHub, you must install the goreleaser binary for your workstation's OS.
  • Clone this repo git clone [email protected]:stelligent/mu.git $GOPATH/src/github.com/stelligent/mu
  • Go to src cd $GOPATH/src/github.com/stelligent/mu
  • Build with make
  • Run unit tests with make test
  • Run end-to-end tests with make e2e...takes about 30 minutes and will incur charges in your AWS account.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].