GitHub user johnmccabe opened a pull request:

    https://github.com/apache/brooklyn-client/pull/21

    fix BROOKLYN-280, add --skipSslChecks flag to work with self-signed certs

    - defaults to false, ie existing behaviour
    - setting to true disables certificate chain and hostname verificiation 
(see `InsecureSkipVerify` in https://golang.org/pkg/crypto/tls/)
    - persisted to ~/.brooklyn_cli
    - also bumped version to `0.10.0-SNAPSHOT`
    
    ```
    bash-4.3$ br login https://10.10.10.100:8443/ admin password
    Get https://10.10.10.100:8443/v1/server/version: x509: certificate signed 
by unknown authority
    bash-4.3$ br app
    Get https://10.10.10.100:8443/v1/applications: x509: certificate signed by 
unknown authority
    
    bash-4.3$ br --skipSslChecks login https://10.10.10.100:8443/ admin password
    Connected to Brooklyn version 0.10.0-20160513.2042 at 
https://10.10.10.100:8443
    bash-4.3$ br app
    Id   Name   Status   Location
    ```
    *Note*: I'd no apps running on this system so the empty table is ok, 
catalog returns as expected.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/johnmccabe/brooklyn-client fix_BROOKLYN-280

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/brooklyn-client/pull/21.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #21
    
----
commit 7dc9b3f009d1b7dc7197622f81a84fcd191c731f
Author: John McCabe <[email protected]>
Date:   2016-05-24T18:09:06Z

    fix BROOKLYN-280, add --skipSslChecks flag
    - defaults to false, ie existing behaviour
    - setting to true disables certificate chain and hostname verificiation 
(see `InsecureSkipVerify` in https://golang.org/pkg/crypto/tls/)
    - persisted to ~/.brooklyn_cli
    
    ```
    bash-4.3$ br login https://10.10.10.100:8443/ admin password
    Get https://10.10.10.100:8443/v1/server/version: x509: certificate signed 
by unknown authority
    bash-4.3$ br app
    Get https://10.10.10.100:8443/v1/applications: x509: certificate signed by 
unknown authority
    
    bash-4.3$ br --skipSslChecks login https://10.10.10.100:8443/ admin password
    Connected to Brooklyn version 0.10.0-20160513.2042 at 
https://10.10.10.100:8443
    bash-4.3$ br app
    Id   Name   Status   Location
    
    ```

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to