github.com/mattyr/nomad@v0.3.3-0.20160919021406-3485a065154a/website/helpers/command_helpers.rb (about) 1 module CommandHelpers 2 # Returns the markdown text for the general options usage. 3 def general_options_usage() 4 <<EOF 5 * `-address=<addr>`: The address of the Nomad server. Overrides the `NOMAD_ADDR` 6 environment variable if set. Defaults to `http://127.0.0.1:4646`. 7 8 * `-region=<region>`: The region of the Nomad server to forward commands to. 9 Overrides the `NOMAD_REGION` environment variable if set. Defaults to the 10 Agent's local region. 11 12 * `-no-color`: Disables colored command output. 13 EOF 14 end 15 end