Skip to content

Commit

Permalink
fixes #656
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-luna-valero committed May 14, 2024
1 parent 5f1f685 commit c858c79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ node endpoints is not recommended: if a server is down, its endpoint is not
accessible.{{% /alert %}}

For convenience and high availability, you should use the
[generic endpoint](https://vault.services.fedcloud.eu:8200) to access the
[generic endpoint](https://secrets.egi.eu) to access the
service. This generic endpoint will be pointed to one of the service nodes
automatically via [Dynamic DNS](../../../compute/cloud-compute/dynamic-dns/).
A simple cron script periodically checks and assigns the generic hostname to
Expand Down
6 changes: 3 additions & 3 deletions content/en/users/security/secrets-store/cli/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ need a Vault token. You can get one from your EGI Check-in access token.
To get a Vault token:

```shell
$ export VAULT_ADDR=https://vault.services.fedcloud.eu:8200
$ export VAULT_ADDR=https://secrets.egi.eu
$ export VAULT_TOKEN=$(vault write auth/jwt/login jwt=$OIDC_ACCESS_TOKEN |

Check failure on line 528 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`jwt` is not a recognized word. (unrecognized-spelling)

Check failure on line 528 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`jwt` is not a recognized word. (unrecognized-spelling)
grep -Po 'token\s+\K[^\s]+$')
```
Expand All @@ -534,7 +534,7 @@ $ export VAULT_TOKEN=$(vault write auth/jwt/login jwt=$OIDC_ACCESS_TOKEN |
To get a Vault token:

```powershell
> $env:VAULT_ADDR="https://vault.services.fedcloud.eu:8200"
> $env:VAULT_ADDR="https://secrets.egi.eu"
> $env:VAULT_TOKEN=$(vault write auth/jwt/login jwt=$env:OIDC_ACCESS_TOKEN `
| Select-String -Pattern "(?<=token\s+)[^\s]+(?=$)" `
| %{$_.Matches.value})
Expand All @@ -545,7 +545,7 @@ To get a Vault token:
To get a Vault token:

```shell
> set VAULT_ADDR=https://vault.services.fedcloud.eu:8200
> set VAULT_ADDR=https://secrets.egi.eu
> for /f "delims=" %a in ('vault write auth/jwt/login "jwt=%OIDC_ACCESS_TOKEN%" ^| findstr /r /c:"token[ ][ ]*[^^ ]*"') do @set VAULT_TOKEN=%a:token=%

Check failure on line 549 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`delims` is not a recognized word. (unrecognized-spelling)

Check failure on line 549 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`findstr` is not a recognized word. (unrecognized-spelling)

Check failure on line 549 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`delims` is not a recognized word. (unrecognized-spelling)

Check failure on line 549 in content/en/users/security/secrets-store/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`findstr` is not a recognized word. (unrecognized-spelling)
> set VAULT_TOKEN=%VAULT_TOKEN: =%
```
Expand Down
2 changes: 1 addition & 1 deletion content/en/users/security/secrets-store/gui/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ are available on the
Follow the steps below to access the web interface of EGI Secrets Store:

<!-- markdownlint-disable no-bare-urls -->
- Open https://vault.services.fedcloud.eu:8200 in your browser.
- Open https://secrets.egi.eu in your browser.
- Choose the _OIDC authentication_ method in the pulldown menu, then click
_Sign in with OIDC provider_.
- Login via _EGI Check-in_ and authorize the Vault GUI.
Expand Down

1 comment on commit c858c79

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (12)
dearmor
delims
findstr
ield
jwt
keyfile
lsb
mysql
pem
quickstart
redis
whitespaces
To accept these unrecognized words as correct, you could run the following commands

... in a clone of the [email protected]:EGI-Federation/documentation.git repository
on the vault branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/EGI-Federation/documentation/actions/runs/9074341602/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (15) from .github/actions/spelling/expect.txt and unrecognized words (12)

Dictionary Entries Covers Uniquely
cspell:npm/dict/npm.txt 302 3 2
cspell:python/src/common/extra.txt 741 2 2
cspell:powershell/dict/powershell.txt 91 1 1
cspell:shell/dict/shell-all-words.txt 113 1 1
cspell:fullstack/dict/fullstack.txt 419 1 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:npm/dict/npm.txt
          cspell:python/src/common/extra.txt
          cspell:powershell/dict/powershell.txt
          cspell:shell/dict/shell-all-words.txt
          cspell:fullstack/dict/fullstack.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''

Please sign in to comment.