@@ -59,17 +59,33 @@ parameters:
5959 checkboxLabel : Run post-configuration validation?
6060
6161usage_template : |-
62- Access to the cluster is via the external IP using SSH as the `rocky` user:
62+ # Accessing the cluster using Open OnDemand
63+
64+ [Open OnDemand](https://openondemand.org/) is a web portal for managing HPC jobs, including graphical
65+ environments such as [Jupyter Notebooks](https://jupyter.org/).
66+
67+ {% if cluster.outputs.openondemand_url %}
68+ The Open OnDemand portal for this cluster as available at
69+ [{{ cluster.outputs.openondemand_url[8:] }}]({{ cluster.outputs.openondemand_url }}).
70+
71+ Enter the username `azimuth` and password `{{ cluster.outputs.azimuth_user_password }}` when prompted.
72+ {% else %}
73+ The Open OnDemand portal for this cluster can be accessed from the services list.
74+ {% endif %}
75+
76+ # Accessing the cluster using SSH
77+
78+ The cluster can be accessed over SSH via the external IP. The SSH public key of the user that
79+ deployed the cluster is injected into the `azimuth` user:
6380
6481 ```
65- $ ssh rocky @{{ cluster.outputs.cluster_access_ip | default('[cluster ip]') }}
82+ $ ssh azimuth @{{ cluster.outputs.cluster_access_ip | default('[cluster ip]') }}
6683 [rocky@{{ cluster.name }}-login-0 ~]$ sinfo
6784 PARTITION AVAIL TIMELIMIT NODES STATE NODELIST
6885 compute* up 60-00:00:0 {{ "%3s" | format(cluster.parameter_values.compute_count) }} idle {{ cluster.name }}-compute-[0-{{ cluster.parameter_values.compute_count - 1 }}]
6986 ```
7087
71- The SSH public key of the user that deployed the cluster is injected. Access can be granted
72- to additional users by placing their SSH public key in `~rocky/.ssh/authorized_keys`.
88+ SSH access can be granted to additional users by placing their SSH public key in `~azimuth/.ssh/authorized_keys`.
7389
7490services :
7591 - name : ood
0 commit comments