Launch Resoto
Resoto allows you to manage and explore your cloud infrastructure via a web or shell interface.
Launching Resoto UI​
Resoto UI is a user-friendly web interface that simplifies managing and exploring your cloud infrastructure.
The steps to launch Resoto UI depend on how you installed Resoto.
- Amazon Web Services
- Docker
- Kubernetes
- pip
The value of
ResotoEKS.ResotoUI
in Outputs is the URL for accessing Resoto UI. Copy the link into your browser.noteThe SSL certificate is self-signed, but you can safely ignore any browser warnings.
The UI requires a PSK token to authenticate. The value of
ResotoEKS.ResotoPskSecret
is the command to obtain this token. Copy the command and paste it into your terminal:$ kubectl get secrets resoto-psk -o jsonpath="{.data.psk}" | base64 -d
Copy the outputted token and paste it into the PSK field of Resoto UI.
Resoto UI will start and guide you through the configuration. If it is your first time starting Resoto UI, the setup wizard will appear and help you configure Resoto:
Resoto UI listens on port
8900
by default. You can access it by opening https://localhost:8900 in your browser.noteThe SSL certificate is self-signed, but you can safely ignore any browser warnings.
If it is your first time starting Resoto UI, the setup wizard will appear and help you configure Resoto:
Resoto Core provides a service that exposes Resoto UI on port
8900
. We recommend configuring an Ingress with a valid certificate for UI access, but you can port-forward the service as a temporary solution:$ kubectl port-forward services/resoto-resotocore 8900
Open https://localhost:8900 in your browser to access Resoto UI.
noteThe SSL certificate is self-signed, but you can safely ignore any browser warnings.
If it is your first time starting Resoto UI, the setup wizard will appear and help you configure Resoto:
Resoto UI listens on port
8900
by default. You can access it by opening https://localhost:8900 in your browser.noteThe SSL certificate is self-signed, but you can safely ignore any browser warnings.
If it is your first time starting Resoto UI, the setup wizard will appear and help you configure Resoto:
Launching Resoto Shell​
Resoto Shell is Resoto's command-line interface.
The steps to launch Resoto Shell depend on how you installed Resoto.
- Amazon Web Services
- Docker
- Kubernetes
- pip
Execute the following in your terminal to access the Resoto Shell interface:
$ kubectl exec -it service/resoto-resotocore -- resh
Execute the following to access the Resoto Shell interface:
$ docker exec -it resotoshell resh
Make sure that the deployment is available:
$ kubectl wait --for=condition=available deployment/resoto-resotocore
Execute the following to access the Resoto Shell interface:
$ kubectl exec -it service/resoto-resotocore -- resh