github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/Documentation/subcommands/status.md (about)

     1  # rkt status
     2  
     3  Given a pod UUID, you can get the exit status of its apps.
     4  Note that the apps are prefixed by `app-`.
     5  
     6  ```
     7  $ rkt status 66ceb509
     8  state=exited
     9  created=2016-01-26 14:23:34.631 +0100 CET
    10  started=2016-01-26 14:23:34.744 +0100 CET
    11  pid=16964
    12  exited=true
    13  app-redis=0
    14  app-etcd=0
    15  ```
    16  
    17  If the pod is still running, you can wait for it to finish and then get the status with `rkt status --wait UUID`
    18  
    19  ## Options
    20  
    21  | Flag | Default | Options | Description |
    22  | --- | --- | --- | --- |
    23  | `--wait` |  `false` | `true` or `false` | Toggle waiting for the pod to exit |
    24  
    25  ## Global options
    26  
    27  | Flag | Default | Options | Description |
    28  | --- | --- | --- | --- |
    29  | `--debug` |  `false` | `true` or `false` | Prints out more debug information to `stderr` |
    30  | `--dir` | `/var/lib/rkt` | A directory path | Path to the `rkt` data directory |
    31  | `--insecure-options` |  none | <ul><li>**none**: All security features are enabled</li><li>**http**: Allow HTTP connections. Be warned that this will send any credentials as clear text.</li><li>**image**: Disables verifying image signatures</li><li>**tls**: Accept any certificate from the server and any host name in that certificate</li><li>**ondisk**: Disables verifying the integrity of the on-disk, rendered image before running. This significantly speeds up start time.</li><li>**all**: Disables all security checks</li></ul>  | Comma-separated list of security features to disable |
    32  | `--local-config` |  `/etc/rkt` | A directory path | Path to the local configuration directory |
    33  | `--system-config` |  `/usr/lib/rkt` | A directory path | Path to the system configuration directory |
    34  | `--trust-keys-from-https` |  `false` | `true` or `false` | Automatically trust gpg keys fetched from https |
    35  | `--user-config` |  `` | A directory path | Path to the user configuration directory |