Aurora Scheduler client written in Go
Find a file
2019-02-13 22:08:08 -08:00
cmd Adding version number to imports in several files. 2019-01-31 18:15:11 -08:00
deb-packaging Adding Dockerfile which can be used to build image to build debian package for xenial more reliably. 2018-12-28 08:59:52 -08:00
debian Changing how we build the go binary now that we're in a custom docker image. 2018-12-28 09:00:53 -08:00
vendor gorealis v2 refactor (#5) 2018-12-27 11:31:51 -08:00
.gitattributes Adding gitattributes to ignore vendored folder, Gopkg.lock, and go.sum 2019-02-13 22:08:08 -08:00
.gitignore Improving which files to ignore in repository. Updating go.sum although for now it doesn't work very well due to a go mod bug. 2018-12-28 09:01:49 -08:00
CHANGELOG gorealis v2 refactor (#5) 2018-12-27 11:31:51 -08:00
go.mod Adding version number to imports in several files. 2019-01-31 18:15:11 -08:00
go.sum Adding version number to imports in several files. 2019-01-31 18:15:11 -08:00
Gopkg.lock gorealis v2 refactor (#5) 2018-12-27 11:31:51 -08:00
Gopkg.toml gorealis v2 refactor (#5) 2018-12-27 11:31:51 -08:00
main.go Adding new verbs and fleshing out the skeleton. Drain works while Kill has an error tha requires a deeper dive. 2017-12-03 12:41:23 -08:00
README.md Added filename outoput for autocomplete verb. Modified debian package generator to include autocomplete. Added instructions to readme to build debian package. 2018-12-05 15:12:49 -08:00
sampleConifg.australis.yml Adding sample config. 2018-10-23 23:35:08 -07:00

Australis

A light-weight client for Apache Aurora built using gorealis.

Usage

A light-weight command line client for use with Apache Aurora built using gorealis.

Usage:
  australis [command]

Available Commands:
  create      Create an Aurora Job
  fetch       Fetch information from Aurora
  help        Help about any command
  kill        Kill an Aurora Job
  start       Start a service, maintenance on a host (DRAIN), a snapshot, or a backup.
  stop        Stop a service or maintenance on a host (DRAIN).

Flags:
  -a, --caCertsPath string      CA certificates path to use.
  -c, --clientCert string       Client certificate to use to connect to Aurora.
  -k, --clientKey string        Client key to use to connect to Aurora.
  -h, --help                    help for australis
  -i, --insecureSkipVerify      Skip verification.
  -p, --password string         Password to use for API authentication
  -s, --scheduler_addr string   Aurora Scheduler's address.
  -u, --username string         Username to use for API authentication
  -z, --zookeeper string        Zookeeper node(s) where Aurora stores information.

Use "australis [command] --help" for more information about a command.

Sample commands:

Fetching current leader

australis fetch leader [ZK NODE 1] [ZK NODE 2]...[ZK NODE N]

Fetching status/mode of a agent

australis fetch status [HOST 1] [HOST 2]...[HOST N]

Setting host to DRAIN:

australis start drain [HOST 1] [HOST 2]...[HOST N]

Taking hosts out of DRAIN (End maintenance):

australis stop drain [HOST 1] [HOST 2]...[HOST N]

Force a snapshot

australis force snapshot

Force a backup

australis force backup

Status

Australis is a work in progress and does not support all the features of Apache Aurora.

Building debian file

From root of the repository run:

debuild -d -us -uc -b