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

doc: add notes about Azure File share names #400

Merged
merged 1 commit into from
Nov 13, 2023
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
8 changes: 8 additions & 0 deletions doc/early-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ storage:
share: <your-username>
```

> **Note**: Please double check the exact name of your share as it may not
> always be quite the same as your username. Some characters are valid for
> username but not for the share name.

Then the token from your confirmation email needs to be stored in the
`kernelci.toml` settings file in order to make use of it. Please note that
only the part of the URL with the arguments starting with the `?` needs to be
Expand All @@ -162,6 +166,10 @@ api.early-access.token = "<your-api-token-here>"
storage.early-access-azure-<your-username>.credentials = "?sp=rcwdl&st=...<your-full-storage-token-here>"
```

> **Note**: If your username contains a dot or any special character, please
> surround it with quotes to ensure it gets parsed correctly as TOML. For
> example: `storage."early-access-azure-my.name".credentials = "..."`.

Then here's a quick way to check it's working, still in the same container:

```sh
Expand Down
Loading