Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gvirt
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
igrida
gvirt
Merge requests
!10
V0.1.1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
V0.1.1
v0.1.1
into
master
Overview
0
Commits
3
Changes
2
Merged
Pascal Morillon
requested to merge
v0.1.1
into
master
3 years ago
Overview
0
Commits
3
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4b087b44
3 commits,
3 years ago
2 files
+
8
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
lib/commands/cmd-tips
+
7
−
7
Options
@@ -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
}
Loading