Alphaus | Documentation
WebsiteRepoTech blog (JP)Tech blog (EN)
ALM v3.0
ALM v3.0
  • What is ALM?
  • Getting started
    • Login for the first time
    • Adding AWS account
    • Adding Azure account
    • Adding Alibaba account
    • Adding GCP account
    • Adding Fujitsu K5 account
  • ALM Template
    • What is ALM Template?
    • Reference (2017-03-03)
    • ALM Template Language
    • Example ALM Templates
  • ALM Agent
    • Overview
    • Getting Started
    • Agent
    • Commands
    • Add-ons
    • Contributing
  • RBAC
    • Overview
    • What is RBAC?
    • Getting started
    • Working with RBAC
    • Release history
    • Example RBAC roles
Powered by GitBook
On this page
  • Usage
  • Global Options

Was this helpful?

  1. ALM Agent

Agent

Usage

ALM-agent is a very simple and easy-to-use tool. It can be used like a CLI (not a Daemon).

Executing ALM-agent will start the containers, the code will be deployed, and the command will be terminated.

To view a list of the available options and commands at any time, just run alm-agent with --help, -h arguments:

$ alm-agent --help
NAME:
   alm-agent

USAGE:
   alm-agent [global options] command [command options] [arguments...]

VERSION:
   v0.3.1504270893

COMMANDS:
     register  initialize alm-agent and start containers
     ensure    start or update containers
     stop      stop active container
     noop      run without container actions.
     help, h   Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --autoupdate, -U                  auto update before run
   --disablereport, -N               Do not send crash report to rollbar.
   --provider Provider, -P Provider  set Provider (default: "aws")
   --verbose, -V                     show debug logs
   --help, -h                        show help
   --version, -v                     print the version

Global Options

  • --autoupdate, -U Before running, ALM-agent checks the new version and updates the agent itself if there is a new version. (self-update)

  • --disablereport, -N We are using rollbar for error monitoring. If you do not want to send crash report to rollbar, use this option.

  • --provider Provider, -P Provider set Provider (default: "aws", available providers: "aws", "alicloud", "k5", "localtest")

  • --verbose, -V show debug logs

  • --help, -h show help

  • --version, -v print the version

PreviousGetting StartedNextCommands

Last updated 6 years ago

Was this helpful?