Duncan Godwin [Mon, 2 Oct 2017 15:28:26 +0000 (16:28 +0100)]
This closes #60
Aled Sage [Thu, 21 Sep 2017 08:19:18 +0000 (09:19 +0100)]
Fix tests tearDown (to always stop management context)
Duncan Godwin [Mon, 18 Sep 2017 15:13:19 +0000 (15:13 +0000)]
Change version to 0.13.0-SNAPSHOT
Geoff Macartney [Fri, 28 Jul 2017 14:41:16 +0000 (15:41 +0100)]
Closes #59
Move Resteasy dependency management to java module pom
Geoff Macartney [Fri, 28 Jul 2017 14:30:10 +0000 (15:30 +0100)]
Closes #58
Fix handling of global flags in scope definition
Previously the presence of global flags in a command like `br --flag app a ent b sensor c` caused the CLI to run the command for app, not sensor.
Geoff Macartney [Fri, 28 Jul 2017 14:18:17 +0000 (15:18 +0100)]
Closes #57
Add flags for verbose output of HTTP request data
New global flags `--verbose` and `--vverbose` (very verbose) configure the network library to write data about API requests to stderr. (I would have used `-v` and `-vv` but the former is already taken as shorthand for `--version`.)
The intention is to make it easier to debug both the working of the CLI and unexpected responses from Brooklyn servers.
Example:
```
$ ./bin/br --verbose deploy ./bp.yaml
POST /v1/applications HTTP/1.1
Host: localhost:8081
User-Agent: Go-http-client/1.1
Content-Length: 0
Authorization: ******
Content-Type: application/json
Accept-Encoding: gzip
HTTP/1.1 201 Created
Transfer-Encoding: chunked
Cache-Control: no-cache, no-store
Content-Type: application/json
Date: Thu, 27 Jul 2017 14:12:56 GMT
Expires: 0
Location: http://localhost:8081/v1/applications/sr9uw9bdbu
Pragma: no-cache
Server: Jetty(9.2.13.v20150730)
Vary: Accept-Encoding
Id: | sr9uw9bdbu
Name: | Application (sr9uw9bdbu)
Status: | In progress
```
```
$ ./bin/br --vverbose application vhkhp6nbbl entity
GET /v1/applications/vhkhp6nbbl/entities HTTP/1.1
Host: localhost:8081
User-Agent: Go-http-client/1.1
Accept: application/json, text/plain
Authorization: ******
Accept-Encoding: gzip
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Cache-Control: no-cache, no-store
Content-Type: application/json
Date: Thu, 27 Jul 2017 14:16:43 GMT
Expires: 0
Pragma: no-cache
Server: Jetty(9.2.13.v20150730)
Vary: Accept-Encoding
503
[{"id":"tqj1a2g883","name":"Tomcat 7 Server","type":"org.apache.brooklyn.entity.webapp.tomcat.TomcatServer","catalogItemId":"org.apache.brooklyn.entity.webapp.tomcat.TomcatServer:0.12.0-SNAPSHOT","links":{"self":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883","parent":"/v1/applications/vhkhp6nbbl/entities/vhkhp6nbbl","application":"/v1/applications/vhkhp6nbbl","children":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/children","config":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/config","sensors":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/sensors","effectors":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/effectors","policies":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/policies","activities":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/activities","locations":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/locations","tags":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/tags","expunge":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/expunge","rename":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/name","spec":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/spec","iconUrl":"/v1/applications/vhkhp6nbbl/entities/tqj1a2g883/icon","catalog":"/v1/catalog/entities/org.apache.brooklyn.entity.webapp.tomcat.TomcatServer/0.12.0-SNAPSHOT"}}]
0
Id | Name | Type
tqj1a2g883 | Tomcat 7 Server | org.apache.brooklyn.entity.webapp.tomcat.TomcatServer
```
The Authorization header is redacted.
Sam Corbett [Fri, 28 Jul 2017 11:53:17 +0000 (12:53 +0100)]
Move Resteasy dependency management to java module pom
Sam Corbett [Fri, 28 Jul 2017 09:45:27 +0000 (10:45 +0100)]
Add flags for verbose output of HTTP request data
Geoff Macartney [Thu, 27 Jul 2017 17:15:03 +0000 (18:15 +0100)]
Closes #56
Set ContentType header when adding .yaml and .bom files to the catalog
Using application/x-yaml saves the Brooklyn server the hassle of guessing. At the moment it's too smart for its own good and gives useless errors about zipfiles when there are errors in yaml files, e.g. when trying to add yaml containing an undefined alias.
Before:
```
$ br catalog add mybp.bom
Server error (400): Bundle BasicManagedBundle{symbolicName=null, version=null, url=n
ull} failed preparation: Unable to read /tmp/brooklyn-bundle-transient-null-
86366849
75390229868.zip when looking for manifest: ZipException: error in opening zip file
```
After:
```
$ br catalog add mybp.bom
Server error (400): ComposerException: found undefined alias doesntexist
in 'reader', line 23, column 15:
name: *doesntexist
```
I'll look to improve the feedback from Brooklyn's guessing endpoint too.
Sam Corbett [Thu, 27 Jul 2017 13:58:11 +0000 (14:58 +0100)]
Fix handling of global flags in scope definition
Previously the presence of global flags in a command like
"br --flag app a ent b sensor c" caused the CLI to run the command for
app, not sensor.
Sam Corbett [Wed, 19 Jul 2017 15:11:14 +0000 (16:11 +0100)]
Set ContentType when adding .yaml and .bom files to the catalog
Using application/x-yaml saves the Brooklyn server the hassle of
guessing. At the moment it's too smart for its own good and gives
useless errors about zipfiles when there are errors in yaml files.
Sam Corbett [Mon, 17 Jul 2017 12:03:05 +0000 (13:03 +0100)]
This closes #42
Improve login handling.
Geoff Macartney [Thu, 13 Jul 2017 16:07:32 +0000 (17:07 +0100)]
Ensure logout does not prevent help being displayed
Geoff Macartney [Tue, 4 Jul 2017 15:08:35 +0000 (16:08 +0100)]
Add licence header to config_test.go
Geoff Macartney [Tue, 4 Jul 2017 15:01:46 +0000 (16:01 +0100)]
Allow login without user/password if target already in config
Geoff Macartney [Tue, 4 Jul 2017 13:20:46 +0000 (14:20 +0100)]
Revert to keeping multiple credentials in the config file
per https://github.com/apache/brooklyn-client/pull/42#issuecomment-
303995483
Geoff Macartney [Wed, 24 May 2017 19:43:08 +0000 (20:43 +0100)]
Ignore invalid config during login and remove config upon failure
Geoff Macartney [Wed, 24 May 2017 15:13:42 +0000 (16:13 +0100)]
Improve error message when not logged in.
Geoff Macartney [Wed, 24 May 2017 14:15:25 +0000 (15:15 +0100)]
Add a br server command.
Displays the URL of the connected Brooklyn.
Geoff Macartney [Wed, 24 May 2017 13:19:10 +0000 (14:19 +0100)]
Simply the format even more: encode username and password
Geoff Macartney [Wed, 24 May 2017 11:51:46 +0000 (12:51 +0100)]
Rename method to private
Geoff Macartney [Wed, 24 May 2017 11:49:56 +0000 (12:49 +0100)]
base64 encode passwords and simplify .brooklyn_cli structure
Includes support for old style .brooklyn_cli format such that it will
read credentials from the old style and use them, but overwrite with
the new style on next login.
New style looks like:
{
"credentials": {
"password": "cGFzc3dvcmQ=",
"username": "geoff"
},
"skipSslChecks": false,
"target": "http://geoffs-macbook-pro.local:8081"
}
Geoff Macartney [Tue, 23 May 2017 18:34:23 +0000 (19:34 +0100)]
Add logout command
Geoff Macartney [Tue, 23 May 2017 16:42:16 +0000 (17:42 +0100)]
Don't store all old logins in .brooklyn_cli
Geoff Macartney [Tue, 23 May 2017 16:08:45 +0000 (17:08 +0100)]
Don't use resp if there was an error
Geoff Macartney [Tue, 23 May 2017 16:08:15 +0000 (17:08 +0100)]
Handle newline/spaces in prompt for username
Geoff Macartney [Tue, 23 May 2017 15:48:35 +0000 (16:48 +0100)]
Don't panic on failure to connect to host
Geoff Macartney [Tue, 4 Apr 2017 14:26:31 +0000 (15:26 +0100)]
Don't trim password.
Geoff Macartney [Tue, 4 Apr 2017 13:08:18 +0000 (14:08 +0100)]
Improve login handling.
See https://issues.apache.org/jira/browse/BROOKLYN-463.
Prompt for user name if not supplied.
Check for 401 Unauthorized and give tidier output.
Mark McKenna [Fri, 23 Jun 2017 13:38:29 +0000 (14:38 +0100)]
This closes #55
Thomas Bouron [Fri, 23 Jun 2017 10:48:30 +0000 (11:48 +0100)]
Allow catalog item (YAML or bundle) to be force-updated via query string flag on the REST API
Alex Heneveld [Tue, 6 Jun 2017 15:55:16 +0000 (16:55 +0100)]
This closes #53
Alex Heneveld [Mon, 5 Jun 2017 12:35:02 +0000 (13:35 +0100)]
show bundle info and message when doing `catalog add`
also supports backwards compatibility as only some API methods support the detail
Geoff Macartney [Tue, 23 May 2017 14:51:44 +0000 (15:51 +0100)]
Closes #52
Delete requrest now only fail is an unsuccessful code is returned
graeme.miller [Tue, 23 May 2017 14:47:17 +0000 (15:47 +0100)]
Delete requrest now only fail is an unsuccessful code is returned
Duncan Godwin [Fri, 19 May 2017 13:10:09 +0000 (14:10 +0100)]
This closes #51
Svetoslav Neykov [Fri, 19 May 2017 12:55:29 +0000 (15:55 +0300)]
Move to Java 8, remove MaxPermSize options
Alex Heneveld [Tue, 9 May 2017 13:27:01 +0000 (14:27 +0100)]
This closes #40
Alex Heneveld [Tue, 9 May 2017 13:26:19 +0000 (14:26 +0100)]
update javadoc following PR review
Alex Heneveld [Tue, 9 May 2017 13:22:41 +0000 (14:22 +0100)]
fix misleading string description in test, following PR review
Alex Heneveld [Tue, 9 May 2017 08:10:48 +0000 (09:10 +0100)]
Merge branch 'master' into brooklyn-api-convenience-better-error-propagation
imports conflict
Duncan Godwin [Mon, 8 May 2017 11:58:24 +0000 (12:58 +0100)]
This closes #50
Aled Sage [Wed, 3 May 2017 10:19:39 +0000 (11:19 +0100)]
Delete catalog.xml support (including /v1/catalog/reset)
Geoff Macartney [Thu, 27 Apr 2017 13:01:26 +0000 (14:01 +0100)]
Closes #49
Add check that path is not empty.
This avoids a panic in a case like br catalog add file://test.zip,
if you forget to add the path to the file, file:///some/path/test.zip.
Geoff Macartney [Thu, 27 Apr 2017 09:45:41 +0000 (10:45 +0100)]
Add check that path is not empty.
This avoids a panic in a case like br catalog add file://test.zip,
if you forget to add the path to the file, file:///some/path/test.zip.
Geoff Macartney [Thu, 27 Apr 2017 09:44:38 +0000 (10:44 +0100)]
Closes #48
Catalog add tweaks
Fixes items noted in #44
Geoff Macartney [Tue, 25 Apr 2017 08:10:14 +0000 (09:10 +0100)]
Closes #47
simpler go CLI project setup and tweaks to instructions for n00bs
Alex Heneveld [Mon, 24 Apr 2017 14:11:22 +0000 (15:11 +0100)]
display nice error if argument is omitted
Alex Heneveld [Mon, 24 Apr 2017 14:06:35 +0000 (15:06 +0100)]
set content type to unknown to use auto-detect when posting to catalog
(prevent reader error if the item is a zip)
Alex Heneveld [Mon, 24 Apr 2017 13:38:36 +0000 (14:38 +0100)]
better error message when server returns an error
we need better error handling; this solves the thing I was wondering, which is where
was the exception coming from.
Alex Heneveld [Mon, 24 Apr 2017 13:02:28 +0000 (14:02 +0100)]
correctly handle file:// urls
Alex Heneveld [Mon, 24 Apr 2017 13:02:20 +0000 (14:02 +0100)]
update description
Alex Heneveld [Mon, 24 Apr 2017 14:12:02 +0000 (15:12 +0100)]
This closes #44
Alex Heneveld [Mon, 24 Apr 2017 12:30:40 +0000 (13:30 +0100)]
code review
Alex Heneveld [Mon, 24 Apr 2017 10:53:50 +0000 (11:53 +0100)]
improve README instructions
- clearer for new users
- the checked-out folder is used (no need for a second copy)
- glide doesn't have to be on the path (it wasn't for me)
- release/build.sh can be used directly
Alex Heneveld [Mon, 24 Apr 2017 10:42:58 +0000 (11:42 +0100)]
set sensible defaults (`.` is not a valid GOPATH)
Geoff Macartney [Wed, 19 Apr 2017 08:38:56 +0000 (09:38 +0100)]
Closes #46
Removed unused class
Fixes broken jenkins builds, introduced by #45 and https://github.com/apache/brooklyn-server/pull/637
Thomas Bouron [Wed, 19 Apr 2017 08:25:54 +0000 (09:25 +0100)]
Remove test that was using removed deprecated code
Thomas Bouron [Wed, 19 Apr 2017 08:15:08 +0000 (09:15 +0100)]
Removed unused class
Geoff Macartney [Tue, 18 Apr 2017 13:58:51 +0000 (14:58 +0100)]
Closes #45
Remove deprecated REST API endpoints
This requires https://github.com/apache/brooklyn-server/pull/637
Thomas Bouron [Fri, 14 Apr 2017 12:21:34 +0000 (13:21 +0100)]
Fix unit tests and launcher config
Richard Downer [Tue, 11 Apr 2017 15:13:49 +0000 (15:13 +0000)]
Bump version to 0.12.0-SNAPSHOT
graeme.miller [Wed, 5 Apr 2017 15:12:04 +0000 (16:12 +0100)]
Added the ability to upload a zip via the CLI
Svetoslav Neykov [Mon, 27 Mar 2017 12:39:05 +0000 (15:39 +0300)]
Closes #41
Use the non-deprecated API method to upload catalog items
This requires https://github.com/apache/brooklyn-server/pull/485 to be merged first
Thomas Bouron [Fri, 24 Mar 2017 12:34:38 +0000 (12:34 +0000)]
Use the non-deprecated API method to upload catalog items
Alex Heneveld [Mon, 27 Feb 2017 13:16:29 +0000 (13:16 +0000)]
lets BrooklynApi.getEntity understand some errors, and add better method
getEntityOnSuccess which requires a success code from the server.
triggered by observing downstream usages which use getEntity on results
without checking them, and thus have an empty TaskSummary following a severe server error
(the server error is lost and the code typically fails later with no indication of cause)
also tidy deprecations/warnings, toString
Alex Heneveld [Mon, 27 Feb 2017 13:16:12 +0000 (13:16 +0000)]
remove redundant pom metadata
Duncan Godwin [Wed, 15 Feb 2017 09:26:26 +0000 (09:26 +0000)]
This closes #39
Robert Moss [Tue, 14 Feb 2017 15:44:23 +0000 (15:44 +0000)]
adds flag for connecting to servers using self-sign ssl, fixing existing code that handles flags
Sam Corbett [Mon, 6 Feb 2017 14:58:15 +0000 (14:58 +0000)]
This closes #37
Add missing @Override annotations and other cleanup
Svetoslav Neykov [Fri, 20 Jan 2017 14:07:33 +0000 (16:07 +0200)]
Add missing @Override annotation to method signatures overriding interface methods
Aled Sage [Mon, 23 Jan 2017 19:58:09 +0000 (19:58 +0000)]
This closes #38
Aled Sage [Mon, 23 Jan 2017 18:51:28 +0000 (18:51 +0000)]
Exclude cli/.glide/* (cache) from rat + git
Geoff Macartney [Thu, 5 Jan 2017 09:59:53 +0000 (09:59 +0000)]
Closes #36
Add NOTICE file to generated client archive
Svetoslav Neykov [Thu, 15 Dec 2016 13:52:41 +0000 (15:52 +0200)]
Add NOTICE file to generated client archive
Svetoslav Neykov [Sun, 4 Dec 2016 16:32:09 +0000 (16:32 +0000)]
Change version to 0.11.0-SNAPSHOT
Sam Corbett [Fri, 2 Dec 2016 14:04:03 +0000 (14:04 +0000)]
This closes #33
Set default JVM memory settings for the build
Sam Corbett [Fri, 2 Dec 2016 14:04:00 +0000 (14:04 +0000)]
This closes #35
Update LICENSE with changes in project dependencies
Svetoslav Neykov [Fri, 25 Nov 2016 16:02:35 +0000 (18:02 +0200)]
Update LICENSE with changes in project dependencies
Geoff Macartney [Thu, 24 Nov 2016 13:01:01 +0000 (13:01 +0000)]
This closes #34
Svetoslav Neykov [Thu, 24 Nov 2016 08:40:56 +0000 (10:40 +0200)]
Remove unused profile
The plugin in the rat-check profile is now activated by default in build/plugins.
Svetoslav Neykov [Tue, 15 Nov 2016 07:18:10 +0000 (09:18 +0200)]
Set default JVM memory settings for the build
Alex Heneveld [Thu, 3 Nov 2016 10:49:55 +0000 (10:49 +0000)]
This closes #31
Alex Heneveld [Thu, 3 Nov 2016 10:47:57 +0000 (10:47 +0000)]
remove redundant gitignore instructions
Alex Heneveld [Thu, 3 Nov 2016 10:47:13 +0000 (10:47 +0000)]
This closes #32
Alex Heneveld [Thu, 3 Nov 2016 10:45:32 +0000 (10:45 +0000)]
This closes #27
Geoff Macartney [Thu, 3 Nov 2016 09:47:23 +0000 (09:47 +0000)]
Add .gitignore (got left behind in move
f63006ba) to 'cli'.
Geoff Macartney [Tue, 1 Nov 2016 12:14:05 +0000 (12:14 +0000)]
Experimental addition of 'catalog show'.
Examples:
br catalog show
br catalog show ( application | entity | location | policy ) ITEM[:VERSION]
apps:
br catalog show app TomcatServer
Id: | TomcatServer:4.1.0-SNAPSHOT
Version: | 4.1.0-SNAPSHOT
Name: | Tomcat Server
...etc.
specific version:
br catalog show app TomcatServer:4.1.0-SNAPSHOT
Id: | TomcatServer:4.1.0-SNAPSHOT
Version: | 4.1.0-SNAPSHOT
Name: | Tomcat Server
...
entities:
br catalog show ent docker-engine | head -3
Id: | docker-engine:2.1.0-SNAPSHOT
Version: | 2.1.0-SNAPSHOT
Name: | Docker Engine
...
policies:
br catalog show pol org.apache.brooklyn.policy.ha.ServiceReplacer
Id: | org.apache.brooklyn.policy.ha.ServiceReplacer:4.1.0-SNAPSHOT
Version: | 4.1.0-SNAPSHOT
Name: | Service Replacer
Symbolic Name: | org.apache.brooklyn.policy.ha.ServiceReplacer
Description: | HA policy for replacing a failed member of a group
Java Type: |
Experimental: render as JSON. Some work required...
Special case: render the whole JSON with jsonpath value `$`:
br -j '$' catalog show ent docker-engine
{"id":"docker-engine:2.1.0-SNAPSHOT","name":"Docker Engine",...
General case: give a JSON path expression following the syntax of https://github.com/NodePrime/jsonpath:
br -j '$.config[*].label+' catalog show ent docker-engine
"Docker Package"
"Docker Version"
"Docker Repository URL"
"Docker GPG Key URL"
"Docker Additional Options"
"Image Pre-install"
"archive.nameFormat"
Svetoslav Neykov [Tue, 13 Sep 2016 14:53:25 +0000 (17:53 +0300)]
Re-use pom config from brooklyn-server
Analogously to brooklyn-library reuse pom configuration from brooklyn-server. While not ideal this allows us to have version and plugin configuration at one place.
Svetoslav Neykov [Tue, 25 Oct 2016 19:18:40 +0000 (22:18 +0300)]
Closes #30
br app only outputs location details when the app has a location
Fixes https://issues.apache.org/jira/browse/BROOKLYN-230.
Svetoslav Neykov [Tue, 25 Oct 2016 19:09:20 +0000 (22:09 +0300)]
Closes #29
Usability improvements and better catalog support
Geoff Macartney [Tue, 25 Oct 2016 16:21:28 +0000 (17:21 +0100)]
Fix delete usage
Svetoslav Neykov [Tue, 25 Oct 2016 13:41:57 +0000 (16:41 +0300)]
Close #26
Update pom SCM & Jenkins URLs
Geoff Macartney [Tue, 25 Oct 2016 11:12:19 +0000 (12:12 +0100)]
test update
Geoff Macartney [Tue, 25 Oct 2016 10:52:21 +0000 (11:52 +0100)]
Fix br tree for apps with members
Geoff Macartney [Mon, 24 Oct 2016 18:55:53 +0000 (19:55 +0100)]
Avoid passing through the content even for 404 URLs
Sam Corbett [Mon, 24 Oct 2016 16:40:53 +0000 (17:40 +0100)]
Only output location details when the app has a location
Fixes https://issues.apache.org/jira/browse/BROOKLYN-230
Geoff Macartney [Mon, 24 Oct 2016 14:58:27 +0000 (15:58 +0100)]
Remove newlines from output tables and add delimiter character.
Geoff Macartney [Mon, 24 Oct 2016 14:57:21 +0000 (15:57 +0100)]
Restore 'add-catalog' for backward compatibility.
Geoff Macartney [Mon, 24 Oct 2016 13:49:17 +0000 (14:49 +0100)]
Fix subcommand usage.
avoid 'BROOKLYN_NAME' in help text