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 instructions for generating support bundle when using a private authenticated registry #8069

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
11 changes: 10 additions & 1 deletion docs/content/en/docs/clustermgmt/support/supportbundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,19 @@ Flags:
```

### Collecting and analyzing a bundle

You only need to run a single command to generate a support bundle, collect information and analyze the output:
`eksctl anywhere generate support-bundle -f my-cluster.yaml`

This command will collect the information from your cluster
If you have an airgapped Amazon EKS Anywhere installation with an authenticated private registry, you will need
to export the following registry authentication environment variables before generating the support bundle:

```
export REGISTRY_USERNAME=<username>
export REGISTRY_PASSWORD=<password>
```

The `generate support-bundle` command will collect the information from your cluster
and run an analysis of the collected information.

The collected information will be saved to your local disk in an archive which can be used for
Expand Down