github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/Documentation/subcommands/cat-manifest.md (about) 1 # rkt cat-manifest 2 3 For debugging or inspection you may want to extract the PodManifest to stdout. 4 5 ``` 6 # rkt cat-manifest --pretty-print UUID 7 { 8 "acVersion":"0.7.0", 9 "acKind":"PodManifest" 10 ... 11 ``` 12 13 ## Options 14 15 | Flag | Default | Options | Description | 16 | --- | --- | --- | --- | 17 | `--pretty-print` | `false` | `true` or `false` | Apply indent to format the output | 18 19 ## Global options 20 21 | Flag | Default | Options | Description | 22 | --- | --- | --- | --- | 23 | `--debug` | `false` | `true` or `false` | Prints out more debug information to `stderr` | 24 | `--dir` | `/var/lib/rkt` | A directory path | Path to the `rkt` data directory | 25 | `--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 | 26 | `--local-config` | `/etc/rkt` | A directory path | Path to the local configuration directory | 27 | `--system-config` | `/usr/lib/rkt` | A directory path | Path to the system configuration directory | 28 | `--trust-keys-from-https` | `false` | `true` or `false` | Automatically trust gpg keys fetched from https | 29 | `--user-config` | `` | A directory path | Path to the user configuration directory |