A thin CLI for Spinnaker.
This project is aimed to provide a thin, limited client that's suitable for CI environments where you may want to publish Pipeline Templates or update pipeline configurations in Spinnaker. For a CLI to help configure and operate use halyard: config & operating utilities are not in Roer's scope.
You can download the most recent version from the Releases tab.
Export SPINNAKER_API pointing to your Gate API.
NAME:
roer - Spinnaker CLI
USAGE:
main [global options] command [command options] [arguments...]
VERSION:
dev
COMMANDS:
pipeline pipeline tasks
pipeline-template pipeline template tasks
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--verbose, -v show debug messages
--certPath value, -c value HTTPS x509 cert path
--keyPath value, -k value HTTPS x509 key path
--version print the version
NAME:
roer pipeline-template - pipeline template tasks
USAGE:
roer pipeline-template command [command options] [arguments...]
VERSION:
dev
COMMANDS:
publish publish a pipeline template
plan validate a pipeline template and or plan a configuration
convert converts an existing, non-templated pipeline config into a scaffolded template
$ SPINNAKER_API=https://localhost:7002 \
go run cmd/roer/main.go pipeline-template plan examples/wait-config-invalid.yml
{
"errors": [
{
"location": "configuration:stages.noConfigStanza",
"message": "Stage configuration is unset",
"severity": "FATAL"
},
{
"location": "configuration:stages.noConfigStanza",
"message": "A configuration-defined stage should have either dependsOn or an inject rule defined",
"severity": "WARN"
}
],
"message": "Pipeline template is invalid",
"status": "BAD_REQUEST"
}Install glide, then install the dependencies:
$ glide i
To run:
$ go run cmd/roer/main.go
You can extend the interface, as well as inject your own HTTP client by providing
your own main.go. This can be useful if you need to provide custom auth logic,
or if you want to add new commands, but not contribute them directly to the
project.