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

Replace port number 31443 #667

Merged
merged 1 commit into from
Aug 28, 2024
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
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 @@

```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 @@ -140,7 +140,7 @@
outputs:
node_ip:
value: { get_attribute: [ simple_node, public_address, 0 ] }
node_creds:

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

View workflow job for this annotation

GitHub Actions / Check Spelling

`creds` is not a recognized word. (unrecognized-spelling)
value: { get_attribute: [ simple_node, endpoint, credential, 0 ] }
```

Expand All @@ -149,16 +149,16 @@

```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
```

Then we can call get the current state of infrastructure using the `getstate`

Check failure on line 156 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)
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 @@ -169,7 +169,7 @@
- `running`, created successfully and running, but still in the
configuration stage;
- `configured`, running and contextualized;
- `unconfigured`, running but not correctly contextualized;

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

View workflow job for this annotation

GitHub Actions / Check Spelling

`unconfigured` is not a recognized word. (unrecognized-spelling)
- `stopped`, stopped or suspended;
- `off`, shutdown or removed from the infrastructure;
- `failed`, an error happened during the launching; or
Expand All @@ -181,7 +181,7 @@

```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,11 +205,11 @@

```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
node_creds = {'token': '...', 'user': 'cloudadm', 'token_type': 'private_key'}

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

View workflow job for this annotation

GitHub Actions / Check Spelling

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

Once we no more need the Infrastructure, we can destroy it using the `destroy`
Expand All @@ -217,6 +217,6 @@

```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
```
Loading