GitHub Action
Cloud Janitor
TL;DR: A convenience tool to automate operations in cloud computing, like creating clusters or cleaning up accounts.
For example, consider a 'create-cluster' task. Cloud janitor will lookup reasonable defaults, validate and backup configuration,
install dependencies, create account-level resources, create cluster-level resources, wait for health check, install plugins and verify the application.
All that from a single invocation, using a command line like cloud-janitor openshift-create-cluster
or the equivalent inside a container, github action or gitpod.io workspace.
Start you gitpod workspace in the link below and try cloud-jantor cowsay hello
or any other task, you can find a complete list with cloud-janitor -cj:help
:)
As developers and sysadmins we are used to building scripts and solutions to automate tasks. However, sharing those solutions can be difficult as they are executed in different machines and contexts. This often leads to a lot of duplication of effort and code to perform the same tasks, such as creating clusters or cleaning up accounts.
Intent Resolution Tasks will look up reasonable defaults, using well-known tools and patterns. For example, a "create-cluster" identify the cluster provider from the system configuration and generate reasonable defaults, including the cluster name.
Improved Security Sensitive outputs, such as administrator passwords, can be filtered out of output and stored in a secure location. All sensitive operations are protected by a capability toggle and can be easily disabled for dry runs.
Easy to Run and Configure All settings are exposed as environment variables, yaml and others, as supported by Quarkus and Smallrye Config. Code can be executed as a command line, jar package, container image, github action. Ansible and other tools to be added in future releases.
Resource Filtering & Resolution Only the matched resources, and their dependents, are affected.
Multi-region, Multi-account and Multi-cloud Cloud janitor will use your configured cloud credentials an any extra configuration to repeat actions across different contexts, such as cleaning up multiple cloud accounts.
Logs & Reporting Keep a record of invocations and their results for queries, visualization and audits.
Rate Limiting Respect API limits and throttling with backoffs and timeouts.
Cloud Janitor is also built to be easily extensible and contributions are most welcome!
This repository is ready to launch on gitpod, containing all configuration to start your development instance with Java, Quarkus, AWS CLI and all tools that you need to code.
Once your workspace is running use the command aws configure
to setup your AWS account authentication. You can also use gitpod environment variables or dotfiles for that purpose. Check that authentication is correct with the command aws sts get-caller-identity
You can run cloud-janitor in development mode by executing quarkus dev
, mvn quarkus:dev
or simply running the class cj.Application
. The default task is called "marvin" and is mostly harmless. It will just log the most important reminder: "Don't panic" :)
Ready to start janitoring? Check the LearningFromTests
class for some examples.
Yes, we need your help and would love to work with you :)
Besides that, contributing to cloud janitor is a great way to learn Java and AWS.
We are glad to help you get started and build upon this repository as you'd like.
If you´d like to get in touch directly, besides here on github, you can find us on twitter.com/cj.
Here are multiple ways you can execute this project.
All mentioned binaries can be found in the project releases page.
Install it:
brew tap cj/homebrew-tap
brew install cloud-janitor
Run it:
cloud-janitor
Using the maven wrapper:
./mvnw quarkus:dev
Using the Quarkus CLI:
quarkus dev
Using your IDE, run the cj.Main
class.
java -jar java -jar cloud-janitor.jar
docker run --pull=always cj/cloud-janitor
- name: Cloud Janitor
uses: CaravanaCloud/cloud-janitor@v1.7.3
Cloud janitor can be configured to perform wide variety of tasks, from creating cluster to translating videos.
Take a look at our configuration samples in the config directory in this repository.
Renaming any configuration file to application.yaml
will make it the default configuration and executed by cloud-janitor.