Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/auser/saltcli
Salt cli in python
https://github.com/auser/saltcli
Last synced: 4 months ago
JSON representation
Salt cli in python
- Host: GitHub
- URL: https://github.com/auser/saltcli
- Owner: auser
- Created: 2013-06-24T22:16:24.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-28T23:02:35.000Z (over 11 years ago)
- Last Synced: 2024-04-14T14:21:39.029Z (9 months ago)
- Language: Python
- Homepage:
- Size: 410 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Salt-CLI
==================================Simple command-line man-handling of SaltStack. Manage SaltStack from the comfort of your own development machine.
Sample configuration:
machines:
master:
roles:
- saltmaster
monitor:
roles:
- monitor
hadoop:
roles:
- hadoop_master
- hadoop_slave
- hbase_master
- zookeeper
- elasticsearch
- hbase_slaveproviders:
aws:
ssh_username: ubuntu
keyname: keyname-dev
region: us-east-1
availability_zone: us-east-1bmachines:
default:
flavor: m1.small
image_id: ami-e4770b8d
region: us-east-1
ports:
tcp:
'0.0.0.0/0':
- 22
- 4505
master:
group: saltmaster
ports:
tcp:
'0.0.0.0/0':
- 22
monitor:
- 4505
- 4506
'*':
- 2202
user_data:
|
#!/bin/bash -ex
echo "LAUNCHING WITH USER_DATA"
touch "/tmp/ran_userdata"
monitor: &monitor
flavor: m1.large
availability_zone: us-east-1d
region: us-east-1
user_data: ./deploy/sample_userdata.sh
ports:
udp:
'0.0.0.0/0':
- 514
- 12201
master:
- 80
'*':
- 2202
tcp:
'0.0.0.0/0':
- 80
- 514
'*':
- 2003
- 2004
hadoop: &hadoop
group: hadoop
flavor: m1.xlarge
ports:
tcp:
'0.0.0.0/0':
- 54310