> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kombify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# stackkit break-glass

> Manage break-glass recovery accounts and bundles

Manage break-glass recovery accounts and bundles.

Manage per-node break-glass recovery accounts and the encrypted bundles that hold their credentials.

Bundles are written by 'stackkit apply' (Phase 1) into /var/lib/stackkit/recovery/. They are encrypted with the recovery passphrase you set during init.

```text theme={null}
To recover a node, decrypt the bundle:
    age -d -o break-glass.txt break-glass-<node>.age
```

Then follow the RESTORE INSTRUCTIONS section inside the decrypted YAML.

```bash theme={null}
stackkit break-glass [flags]
```

| Flag    | Type   | Default | Description                                                         |
| ------- | ------ | ------- | ------------------------------------------------------------------- |
| `--dir` | string | —       | Override the bundle directory (default: /var/lib/stackkit/recovery) |

Subcommands: [`stackkit break-glass list`](#stackkit-break-glass-list), [`stackkit break-glass show-bundle`](#stackkit-break-glass-show-bundle)

## stackkit break-glass list

List break-glass bundles on this host.

```bash theme={null}
stackkit break-glass list [flags]
```

Inherited from `stackkit break-glass`:

| Flag    | Type   | Default | Description                                                         |
| ------- | ------ | ------- | ------------------------------------------------------------------- |
| `--dir` | string | —       | Override the bundle directory (default: /var/lib/stackkit/recovery) |

**Examples**

```bash theme={null}
# List the encrypted recovery bundles in /var/lib/stackkit/recovery
stackkit break-glass list

# List bundles copied to another directory
stackkit break-glass list --dir ./recovery-copy
```

## stackkit break-glass show-bundle

Print the path to a node's encrypted bundle.

```bash theme={null}
stackkit break-glass show-bundle <node> [flags]
```

Inherited from `stackkit break-glass`:

| Flag    | Type   | Default | Description                                                         |
| ------- | ------ | ------- | ------------------------------------------------------------------- |
| `--dir` | string | —       | Override the bundle directory (default: /var/lib/stackkit/recovery) |

**Examples**

```bash theme={null}
# Print the bundle path of a node that stackkit break-glass list showed
stackkit break-glass show-bundle <node>
```
