Merge remote-tracking branch 'origin' into 1678-new-active-user-orientation
[arvados.git] / apps / workbench / app / views / virtual_machines / index.html.erb
1 <%= render partial: 'application/index' %>
2
3 <hr />
4
5 <p>
6 Sample <code>~/.ssh/config</code> section:
7 </p>
8
9 <pre>
10 Host *.arvados
11   ProxyCommand ssh -p2222 turnout@switchyard.<%= current_api_host || 'xyzzy.arvadosapi.com' %> -x -a $SSH_PROXY_FLAGS %h
12 <% if @objects.first.andand.current_user_logins.andand.first %>
13   User <%= @objects.first.current_user_logins.andand.first %>
14 <% end %>
15 </pre>
16
17 <p>
18 Sample login command:
19 </p>
20
21 <pre>
22 ssh <%= @objects.first.andand.hostname.andand.sub('.'+current_api_host,'') or 'vm-hostname' %>.arvados
23 </pre>
24
25 <p>
26   See also:
27   <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; SSH access'), 'http://doc.arvados.org/user/ssh-access.html' %>.
28 </p>