CloudSlang alternatives and similar tools
Based on the "Cloud Orchestration" category.
Alternatively, view CloudSlang alternatives based on common mentions on social networks and blogs.
-
etcd
Distributed reliable key-value store for the most critical data of a distributed system -
consul
Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure. -
Salt
Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here: -
Nomad
Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations. -
StackStorm
StackStorm (aka "IFTTT for Ops") is event-driven automation for auto-remediation, incident responses, troubleshooting, deployments, and more for DevOps and SREs. Includes rules engine, workflow, 160 integration packs with 6000+ actions (see https://exchange.stackstorm.org) and ChatOps. Installer at https://docs.stackstorm.com/install/index.html -
Rundeck
Enable Self-Service Operations: Give specific users access to your existing tools, services, and scripts -
BOSH
Cloud Foundry BOSH is an open source tool chain for release engineering, deployment and lifecycle management of large scale distributed services. -
Juju
Universal Operator Lifecycle Manager (OLM) for Kubernetes operators, and operators for traditional Linux apps, with declarative integration between operators for automated microservice integration. -
Cloudify
Open source TOSCA-based cloud orchestration software platform written in Python and YAML. -
Terraform
Terraform works with many cloud providers and creates infrastructure from code.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CloudSlang or a related project?
README
CloudSlang Content
CloudSlang is a YAML based language for writing human-readable workflows for the Cloud Slang Orchestration Engine (Score). This repository includes CloudSlang flows and operations.
Click here for an overview of all the currently supported integrations.
Getting started:
Pre-Requisite: Java JRE >= 7
- Download the CloudSlang CLI file named cslang-cli-with-content:
- Extract it.
- Go to the folder
cslang/bin/
- Run the executable :
- For Windows :
cslang.bat
- For Linux :
bash cslang
- For Windows :
- Run a simple example print text flow:
run --f ../content/io/cloudslang/base/print/print_text.sl --i text=first_flow --cp ../content/
Command line arguments in the above example:
Argument | Description |
---|---|
--f | Location of the flow to run. |
--i | Arguments the flow takes as input, for multiple arguments use a comma delimited list (e.g. var1=value1,var2=value2 ). |
--cp | Classpath for the location of the content. Required when content imports other content. |
Note: Some of the content is dependent on external python modules. If you are using the CLI to run your flows, you can import external modules by doing one of the following:
- Installing packages into the python-lib folder
- Editing the executable file
Installing packages into the python-lib folder:
Prerequisites: Python 2.7 and pip.
You can download Python (version 2.7) from here. Python 2.7.9 and later include pip by default. If you already have Python but don't have pip, see the pip documentation for installation instructions.
- Edit the requirements.txt file in the python-lib folder, which is found at the same level as the bin folder that contains the CLI executable.
- Enter the Python package and all its dependencies in the requirements file.
- See the pip documentation for information on how to format the requirements file.
- Run the following command from inside the python-lib folder:
bash pip install -r requirements.txt -t .
Note: If your machine is behind a proxy you will need to specify the proxy using pip's--proxy
flag.
Note: If you have defined a JYTHONPATH
environment variable, you will need to add the python-lib folder's path to its value.
Editing the executable file
- Open the executable found in the bin folder for editing.
- Change the
Dpython.path
key's value to the desired path.
Documentation :
All documentation is available on the CloudSlang website.
Get Involved
Read our contributing guide [here](CONTRIBUTING.md).
Contact us here.