JSON support for taking in host list (#8)

* Bumping up the version.

* Adding flags to take in JSON from the command line.

* go.sum no longer strictly necessary since go1.13

* Adding support for reading JSON list of hosts to drain from STDIN or from a file.

* Adding changes to changelogs
This commit is contained in:
Renan I. Del Valle 2020-02-07 18:41:59 -08:00 committed by GitHub
parent d63c719cef
commit f94a055b47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 91 additions and 93 deletions

View file

@ -36,6 +36,8 @@ var caCertsPath string
var clientKey, clientCert string
var configFile string
var toJson bool
var fromJson bool
var fromJsonFile string
var logLevel string
var duration time.Duration
var percent float64
@ -43,10 +45,9 @@ var count int64
var filename string
var message = new(string)
var updateID string
var statusList = make([]string, 0, 0)
var log = logrus.New()
const australisVer = "v0.0.10"
const australisVer = "v0.1.0"
var forceDrainTimeout time.Duration