Skip to content

Commit

Permalink
Replace port number 31443 (#667)
Browse files Browse the repository at this point in the history
Port 31443 does not work any more and it has been replaced by 443. The
documentation has been changed accordingly
  • Loading branch information
EGI-ILM authored Aug 28, 2024
1 parent 2e330ee commit 2a27cf0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/en/users/compute/orchestration/im/cli/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ parameters:

```ini
[im_client]
restapi_url=https://appsgrycap.i3m.upv.es:31443/im
restapi_url=https://appsgrycap.i3m.upv.es/im
auth_file=auth.dat
```

Expand Down Expand Up @@ -149,7 +149,7 @@ or a TOSCA YAML file:

```shell
$ im_client.py create infra.radl
Secure connection with: https://appsgrycap.i3m.upv.es:31443/im
Secure connection with: https://appsgrycap.i3m.upv.es/im
Infrastructure successfully created with ID: 457273ea-85e4-11ec-aa81-faaae69bc911
```

Expand All @@ -158,7 +158,7 @@ operation of the IM client tool:

```shell
$ im_client.py getstate 457273ea-85e4-11ec-aa81-faaae69bc911

Check failure on line 160 in content/en/users/compute/orchestration/im/cli/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`getstate` is not a recognized word. (unrecognized-spelling)
Secure connection with: https://appsgrycap.i3m.upv.es:31443/im
Secure connection with: https://appsgrycap.i3m.upv.es/im
The infrastructure is in state: pending
VM ID: 0 is in state: pending.
```
Expand All @@ -181,7 +181,7 @@ process using the `getcontmsg` operation:

```shell
$ im_client.py getcontmsg 457273ea-85e4-11ec-aa81-faaae69bc911
Secure connection with: https://appsgrycap.i3m.upv.es:31443/im
Secure connection with: https://appsgrycap.i3m.upv.es/im
Connected with: http://localhost:8800
Msg Contextualizator:
Expand All @@ -205,7 +205,7 @@ we can get the TOSCA output values with the `getoutputs` operation:

```shell
$ im_client.py getoutputs 457273ea-85e4-11ec-aa81-faaae69bc911
Secure connection with: https://appsgrycap.i3m.upv.es:31443/im
Secure connection with: https://appsgrycap.i3m.upv.es/im
The infrastructure outputs:
node_ip = 8.8.8.8
Expand All @@ -217,6 +217,6 @@ operation:

```shell
$ im_client.py destroy 457273ea-85e4-11ec-aa81-faaae69bc911
Secure connection with: https://appsgrycap.i3m.upv.es:31443/im
Secure connection with: https://appsgrycap.i3m.upv.es/im
Infrastructure successfully destroyed
```

1 comment on commit 2a27cf0

@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 (3)

creds
getstate
unconfigured

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 main 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/10592899569/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

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

Dictionary Entries Covers Uniquely
cspell:golang/dict/go.txt 2099 1 1
cspell:python/src/python/python-lib.txt 2417 1 1
cspell:scala/dict/scala.txt 153 1
cspell:filetypes/filetypes.txt 264 1
cspell:npm/dict/npm.txt 302 1

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

      with:
        extra_dictionaries:
          cspell:golang/dict/go.txt
          cspell:python/src/python/python-lib.txt
          cspell:scala/dict/scala.txt
          cspell:filetypes/filetypes.txt
          cspell:npm/dict/npm.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.