Skip to content

Commit

Permalink
doc: add notes about Azure File share names
Browse files Browse the repository at this point in the history
The Azure File name might not be exactly the same as the username so
add a note about that.  Also add a related note about putting values
in double quotes when they contain a dot so it gets parsed correctly
in TOML with the dotted-key syntax.

Signed-off-by: Guillaume Tucker <[email protected]>
  • Loading branch information
gctucker committed Nov 13, 2023
1 parent 83edddc commit a1e7981
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit a1e7981

Please sign in to comment.