From c97c517f511815e9c46eac16290b021cbfe80e78 Mon Sep 17 00:00:00 2001
From: Pascal Morillon <pascal.morillon@irisa.fr>
Date: Fri, 7 May 2021 09:19:27 +0200
Subject: [PATCH 1/3] Fix tips subcommand

---
 lib/commands/cmd-tips | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/commands/cmd-tips b/lib/commands/cmd-tips
index b297c1c..aa32f09 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"
-- 
GitLab


From 9853c87d079f97876638ffb4800acc58129570c7 Mon Sep 17 00:00:00 2001
From: Pascal Morillon <pascal.morillon@irisa.fr>
Date: Fri, 7 May 2021 15:16:01 +0200
Subject: [PATCH 2/3] Fix tips subcommand

---
 lib/commands/cmd-tips | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/commands/cmd-tips b/lib/commands/cmd-tips
index aa32f09..d86e84d 100644
--- a/lib/commands/cmd-tips
+++ b/lib/commands/cmd-tips
@@ -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
 }
 
-- 
GitLab


From 4b087b44e25b056bf77b3a2dae1eaa8b1b77ce28 Mon Sep 17 00:00:00 2001
From: Pascal Morillon <pascal.morillon@irisa.fr>
Date: Tue, 29 Jun 2021 08:21:25 +0200
Subject: [PATCH 3/3] Bump to version 0?1?1

---
 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VERSION b/VERSION
index 6e8bf73..17e51c3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.0
+0.1.1
-- 
GitLab