Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 41 additions & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,47 @@ brew tap stackitcloud/tap
2. You can then install the CLI via:

```shell
brew install stackit
brew install --cask stackit
```

#### Formula deprecated

The homebrew formula is deprecated, will no longer be updated and will be removed after 2026-01-22.
You need to install the STACKIT CLI as cask.
Therefor you need to uninstall the formula and reinstall it as cask.

Your profiles should normally remain. To ensure that nothing will be gone, you should backup them.

1. Export your existing profiles. This will create a json file in your current directory.
```shell
stackit config profile export default
```

2. If you have multiple profiles, then execute the export command for each of them. You can find your profiles via:

```shell
stackit config profile list
stackit config profile export <profile-name>
```

3. Uninstall the formula.
```shell
brew uninstall stackit
```

4. Install the STACKIT CLI as cask.
```shell
brew install --cask stackit
```

5. Check if your configs are still stored.
```shell
stackit config profile list
```

6. In case the profiles are gone, import your profiles via:
```shell
$ stackit config profile import -c @default.json --name myProfile
```

### Linux
Expand Down
Loading