diff --git a/VERSION b/VERSION index 6e8bf73aa550d4c57f6f35830f1bcdc7a4a62f38..17e51c385ea382d4f2ef124b7032c1604845622d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.1.1 diff --git a/lib/commands/cmd-tips b/lib/commands/cmd-tips index b297c1cfe9941159bda0085781cf30326f056f9d..d86e84dfca7eab5ef13c737c7bb283875f17d7e1 100644 --- a/lib/commands/cmd-tips +++ b/lib/commands/cmd-tips @@ -25,15 +25,15 @@ tips_command() { case $GVIRT_CONTEXT in igrida) echo "## SSH to the VM from external machine" - echo "ssh -p $vm_ssh_port -o StrictHostKeyChecking=no root@$(get_hostname) # from IRISA Network or VPN" + echo "ssh -p $vm_ssh_port -o StrictHostKeyChecking=no root@$(get_hostname).irisa.fr # from IRISA Network or VPN" echo "ssh -p $vm_ssh_port -o StrictHostKeyChecking=no root@$(get_hostname).remote # from Internet with ssh proxycommand" echo echo "## Docker context creation from external machine" - echo "docker context create igrida --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" + echo "docker context create igrida --docker \"host=ssh://root@$(get_hostname).irisa.fr:${vm_ssh_port}\"" echo "docker context create igrida --docker \"host=ssh://root@$(get_hostname).remote:${vm_ssh_port}\"" echo echo "## Docker context update from external machine" - echo "docker context update igrida --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" + echo "docker context update igrida --docker \"host=ssh://root@$(get_hostname).irisa.fr:${vm_ssh_port}\"" echo "docker context update igrida --docker \"host=ssh://root@$(get_hostname).remote:${vm_ssh_port}\"";; grid5000) echo "## SSH to the VM from external machine" @@ -41,12 +41,12 @@ tips_command() { echo "ssh -p $vm_ssh_port -o StrictHostKeyChecking=no root@$(get_hostname | sed 's/\.grid5000\.fr/\.g5k/') # from Internet with ssh proxycommand" echo echo "## Docker context creation from external machine" - echo "docker context create igrida --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" - echo "docker context create igrida --docker \"host=ssh://root@$(get_hostname | sed 's/\.grid5000\.fr/\.g5k/'):${vm_ssh_port}\"" + echo "docker context create g5k --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" + echo "docker context create g5k --docker \"host=ssh://root@$(get_hostname | sed 's/\.grid5000\.fr/\.g5k/'):${vm_ssh_port}\"" echo echo "## Docker context update from external machine" - echo "docker context update igrida --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" - echo "docker context update igrida --docker \"host=ssh://root@$(get_hostname | sed 's/\.grid5000\.fr/\.g5k/'):${vm_ssh_port}\"";; + echo "docker context update g5k --docker \"host=ssh://root@$(get_hostname):${vm_ssh_port}\"" + echo "docker context update g5k --docker \"host=ssh://root@$(get_hostname | sed 's/\.grid5000\.fr/\.g5k/'):${vm_ssh_port}\"";; esac }