- Project State: Active
- Issues Response SLA: 3 business days
- Pull Request Response SLA: 3 business days
For more information on project states and SLAs, see this documentation.
train-habitat
is a Train plugin and is used as a Train Transport to connect to Habitat installations.
train-habitat
is included with InSpec 4.7.3 and later. There is no need to separately install this plugin.
As train-habitat
takes potentially many options, it is simplest to list the options in your ~/.inspec/config.json
file, then used the named set of options with -t
.
For example, if your config file contains:
{
"file_version": "1.1",
"credentials": {
"habitat": {
"dev-hab": {
"api_url": "http://dev-hab.my-corp.io",
"cli_ssh_host": "dev-hab.my-corp.io"
},
"prod-hab": {
"api_url": "https://prod-hab.my-corp.io",
"api_auth_token": "opensesame"
},
}
}
}
Using this configuration, you could execute:
$ inspec exec some-profile -t habitat://dev-hab
# Or
$ inspec exec some-profile -t habitat://prod-hab
You may also pass --config some-file.json
to use a config file at a different location.
See the next section for the full list of options you may use with a habitat
credential set in your configuration.
The options that may be passed to Train.create
are listed below.
Because Habitat exposes some facts by its HTTP Gateway API, and some facts by its CLI tool hab
, this Train Transport has three modes of operation:
- Using only the HTTP API (no ability to query packages, but rich ability to query rings)
- Using only the
hab
CLI command (limitations TBD) - Using both (full capabilities)
When creating a train-habitat
Connection, there are thus two sets of options, prefixed with api_
and cli_
respectively. You must provide at least one set.
API-mode options are used to connect to a Habitat Supervisor running with an exposed HTTP Gateway. They are prefixed with api_
.
Train.create(:habitat, api_url: 'http://my-hab.my-company.io:9631')
Required for API-mode use. This is an HTTP or HTTPS URL that identifies a Supervisor HTTP Gateway. If the port is omitted from the URL, the API standard port of 9631 is assumed; to use port 80, specify it explicitly.
The supervisor may be configured to require a Bearer Token Authorization, in which the client and the gateway use a pre-shared secret. Use this option to specify the secret.
CLI options are more varied, and are entirely dependent on the underlying transport chosen to reach the CLI. For example, if there were a supported transport named 'radio' that took options 'channel' and 'band', specify them to train-habitat like this:
Train.create(:habitat, {cli_radio_band: 'VHF', cli_radio_channel: 23})
train-habitat
identifies the underlying "sub-transport" using the prefixes of the provided options. For example, if you pass an option named cli_ssh_host
, train-habitat
will recognize that you intend to use the SSH transport to connect to a location that has access to the hab
CLI tool.
You may specify many options referring to the same sub-transport (such as credentials), but it is an error to specify more than one CLI sub-transport.
Currently supported CLI transports include:
- SSH
Plans for future support include (in approximate order):
- WinRM
- Local
- Docker
Any options not prefixed with cli_
or api_
are also passed to the CLI transport. This means you can use generic Train connection options such as the sudo
and shell
sets of options (see train source code), as well as logger
.
train-habitat
can accept any option that the Train SSH Transport accepts if the prefix cli_ssh_
is added. This includes:
cli_ssh_host
- String hostname or IP addresscli_ssh_user
- String user to connect ascli_ssh_key_files
- Array of paths to private key files to use
Other options are available; see train source code for details.
# Install development tools
$ gem install bundler
$ bundle install
# Running style checker
bundle exec rake lint
# Running unit tests
bundle exec rake test:unit
# Running integration tests (requires Vagrant and VirtualBox)
bundle exec rake test:integration
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -sam 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
| Author: | Paul Welch
| Author: | David McCown
| Author: | Clinton Wolfe
| Copyright: | Copyright (c) 2018-2019 Chef Software Inc.
| License: | Apache License, Version 2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.