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

Update URLs for IM #670

Merged
merged 3 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
allowfullscreen
autoplay
creds
csr
CVMFS
dearmor
delims
diracsgm
findstr
getstate
hmac
iframe
jscpd
Expand All @@ -21,6 +23,7 @@ rsa
sgm
tmp
toml
unconfigured
Unregistering
workflows
yyy
2 changes: 1 addition & 1 deletion content/en/providers/cloud-compute/openstack/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,6 @@ $ openstack server show 0f3e1420-4480-4bea-95f1-9920a70b324d -c properties -f ya
properties:
eu.egi.cloud.orchestrator: es.upv.grycap.im
eu.egi.cloud.orchestrator.id: 0afdc7ba-bf5d-11ed-9e89-86ce117c3fcf
eu.egi.cloud.orchestrator.url: https://appsgrycap.i3m.upv.es:31443/im
eu.egi.cloud.orchestrator.url: https://im.egi.eu/im
eu.egi.cloud.orchestrator.user: __OPENID__XXXXXXredacted
```
6 changes: 3 additions & 3 deletions content/en/users/compute/orchestration/im/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: >

## What is it?

[Infrastructure Manager](https://www.grycap.upv.es/im) (IM) is a tool that
[Infrastructure Manager](https://im.egi.eu/) (IM) is a tool that
**orchestrates the deployment of custom virtual infrastructures on multiple
backends**. It streamlines the access and usability of Infrastructure-as-a-Service
(IaaS) clouds by automating the configuration, deployment, software installation
Expand All @@ -24,14 +24,14 @@ a wide variety of backends, either federated (such as
[Microsoft Azure](https://azure.microsoft.com/)) or on-premises (such as
[OpenStack](../../../getting-started/openstack)),
thus making user applications cloud agnostic.
IM features a [web-based GUI](https://appsgrycap.i3m.upv.es:31443/im-dashboard/),
IM features a [web-based GUI](https://im.egi.eu/),
an XML-RPC API, a REST API and a [command-line interface](cli) (CLI).
It supports
[OASIS TOSCA Simple Profile in YAML](https://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.0/csprd01/TOSCA-Simple-Profile-YAML-v1.0-csprd01.html).

{{% alert title="Tip" color="info" %}} An easy way to deploy your first VM
in the EGI Federation is from the
[Infrastructure Manager dashboard](https://appsgrycap.i3m.upv.es:31443/im-dashboard/).
[Infrastructure Manager dashboard](https://im.egi.eu/).
A [tutorial](https://imdocs.readthedocs.io/en/latest/dashboard.html#usage) and
[demo videos](https://youtube.com/playlist?list=PLgPH186Qwh_37AMhEruhVKZSfoYpHkrUp) are also available.
{{% /alert %}}
Expand Down
14 changes: 7 additions & 7 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/im
restapi_url=https://im.egi.eu/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/im
Secure connection with: https://im.egi.eu/im
Infrastructure successfully created with ID: 457273ea-85e4-11ec-aa81-faaae69bc911
```

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

```shell
$ im_client.py getstate 457273ea-85e4-11ec-aa81-faaae69bc911
Secure connection with: https://appsgrycap.i3m.upv.es/im
Secure connection with: https://im.egi.eu/im
The infrastructure is in state: pending
VM ID: 0 is in state: pending.
```

The valid VM and infrastructure states are the following:

- `pending`, launched, but still in initialization stage;
- `running`, created successfully and running, but still in the
- `configuring`, created successfully and running, but still in the
configuration stage;
- `configured`, running and contextualized;
- `unconfigured`, running but not correctly contextualized;
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/im
Secure connection with: https://im.egi.eu/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/im
Secure connection with: https://im.egi.eu/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/im
Secure connection with: https://im.egi.eu/im
Infrastructure successfully destroyed
```
Loading