github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/Documentation/subcommands/rm.md (about) 1 # rkt rm 2 3 Cleans up all resources (files, network objects) associated with a pod just like `rkt gc`. 4 This command can be used to immediately free resources without waiting for garbage collection to run. 5 6 ``` 7 rkt rm c138310f 8 ``` 9 10 Instead of passing UUID on command line, rm command can read the UUID from a text file. 11 This can be paired with `--uuid-file-save` to remove pods by name: 12 13 ``` 14 rkt run --uuid-files-save=/run/rkt-uuids/mypod ... 15 rkt rm --uuid-file=/run/rkt-uuids/mypod 16 ``` 17 18 ### Global options 19 20 | Flag | Default | Options | Description | 21 | --- | --- | --- | --- | 22 | `--debug` | `false` | `true` or `false` | Prints out more debug information to `stderr` | 23 | `--dir` | `/var/lib/rkt` | A directory path | Path to the `rkt` data directory | 24 | `--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 | 25 | `--local-config` | `/etc/rkt` | A directory path | Path to the local configuration directory | 26 | `--system-config` | `/usr/lib/rkt` | A directory path | Path to the system configuration directory | 27 | `--trust-keys-from-https` | `false` | `true` or `false` | Automatically trust gpg keys fetched from https | 28 | `--user-config` | `` | A directory path | Path to the user configuration directory |