Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add a section to the quickstart that shows how to uninstall abctl. #42427

Merged
merged 2 commits into from
Jul 23, 2024
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
23 changes: 23 additions & 0 deletions docs/using-airbyte/getting-started/oss-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,29 @@ Then you can run `kubectl edit ingress -n airbyte-abctl --kubeconfig ~/.airbyte/
key under the spec.rules section of the Ingress definition. The host should match the FQDN name that you are trying to
host Airbyte at, for example: `airbyte.company.example`.

## Uninstalling


If you want to remove Airbyte from your system, consider which of the following two options you would like to use.

1: Run the following command to stop all running containers that `abctl` has created **while preserving any data you've created**:

```shell
abctl local uninstall
```

2: If you want to clear the persistent data in addition to stopping containers, run:

```shell
abctl local uninstall --persisted
```

As a last step, to clear out any additional information that `abctl` may have created, you can run:

```shell
rm -rf ~/.airbyte/abctl
```

## Troubleshooting

There are several channels for community support of local setup and deployment.
Expand Down
Loading