Skip to content

Connect's CLI to automate frontend installation into the Odin Automation Hub

License

Notifications You must be signed in to change notification settings

zheqd/apsconnect-cli

 
 

Repository files navigation

logo

apsconnect-cli

A command line tool for APS connector installation on Odin Automation in the relaxed way.

pyversions Build Status PyPi Status

How to install

APSConnect CLI tool is compatible with all recent Python releases of 2.7, 3.4, 3.5 and 3.6 versions. Typically, all you need is just PyPI client, like pip:

pip install apsconnectcli

Python releases before 2.7.9 (like CentOS 7.2)

CentOS 7.2 provide outdated Python 2.7.5 release, so you'll need an additional step to make it work properly:

  1. Update the setuptools package
    pip install -U setuptools
    
  2. Install backport of ssl.match_hostname()
    pip install -U backports.ssl-match-hostname
    
  3. Install APSConnect CLI tool forcing requirements update
    pip install -U apsconnectcli
    

Usage

1 Connect your Odin Automation Hub

apsconnect init-hub --hub-host HUB_HOST [--user USER] [--pwd PWD] \
                    [--use-tls USE_TLS] [--port PORT] [--aps-host APS_HOST] \
                    [--aps-port APS_PORT] [--use-tls-aps USE_TLS_APS]
⇒  apsconnect init-hub oa-hub-hostname
APSConnect-cli v.1.7.11
Connectivity with hub RPC API [ok]
Hub version oa-7.1-3256
Connectivity with hub APS API [ok]
Config saved [/Users/allexx/.aps_config]

2 Install connector-frontend in Odin Automation Hub

apsconnect install-frontend --source SOURCE --oauth-key OAUTH_KEY --oauth-secret OAUTH_SECRET \
				            --backend-url BACKEND_URL [--settings SETTINGS_FILE] \
				            [--network = proxy] [--hub-id HUB_ID] [--instance-only = false]
⇒  apsconnect install-frontend package.aps.zip application-3-v1-687fd3e99eb 639a0c2bf3ab461aaf74a5c622d1fa34 --backend-url http:https://127.197.49.26/
APSConnect-cli v.1.7.11
Importing connector http:https://aps.odin.com/app/connector
Connector http:https://aps.odin.com/app/connector imported with id=206 [ok]
Resource types creation [ok]
Service template "connector" created with id=16 [ok]
Limits for Service template "16" are applied [ok]

The --settings parameter is normally not required, it should point to a file containing data in JSON format that will be mixed in to application instance create API request. Can be used to provide custom application instance global settings.

Use --instance-only flag if you wish to skip resource types and service templates creation.

WARNING Due to limitations of Operations Automation API importing large (more than a few megabytes) packages from local source might fail. Use HTTP link as source for such packages.

Misc

Check utility version

⇒ apsconnect version
apsconnect-cli v.1.7.11 built with love.

Generate Oauth credentials with helper command

apsconnect generate-oauth [--namespace]
⇒  apsconnect generate-oauth test
OAuh key: test-c77e25b1d6974a87b2ff7f58092d6007
Secret:   14089074ca9a4abd80ba45a19baae693

Note that --source gets http(s):https:// or filepath argument.

Enable APS Development mode

Allows using non-TLS connector-backend URL and other features for debug.

⇒ apsconnect aps-devel-mode
APS Development mode ENABLED

Disable mode with --disable.

⇒ apsconnect aps-devel-mode --disable
APS Development mode DISABLED.

Get Hub token

⇒ apsconnect hub-token
ab8719ff-d818-4b6f-8023-0229f768e086

About

Connect's CLI to automate frontend installation into the Odin Automation Hub

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 97.5%
  • Shell 2.5%