Skip to content

Commit

Permalink
Deploying to gh-pages from @ 720493c 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Oct 4, 2023
1 parent d19a9ec commit 2902f6d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 6 deletions.
43 changes: 39 additions & 4 deletions database.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@
"gpu": {
"computer": {
"computer-configure": {
"username": "{{ username }}",
"safe_interval": 60,
"proxy_command": "ssh -q -Y {username}@ela.cscs.ch netcat daint.cscs.ch 22"
"proxy_command": "ssh -q -Y {username}@ela.cscs.ch netcat daint.cscs.ch 22",
"metadata": {
"tooltip": "<p>\n Setup up the SSH connection.\n</p>\n",
"username": {
"description": "The username to use for the SSH connection",
"type": "text",
"key_display": "SSH username"
}
}
},
"computer-setup": {
"label": "{{ label }}",
Expand Down Expand Up @@ -94,8 +103,17 @@
"mc": {
"computer": {
"computer-configure": {
"username": "{{ username }}",
"safe_interval": 60,
"proxy_command": "ssh -q -Y {username}@ela.cscs.ch netcat daint.cscs.ch 22"
"proxy_command": "ssh -q -Y {{ username }}@ela.cscs.ch netcat daint.cscs.ch 22",
"metadata": {
"tooltip": "<p>\n Setup up the SSH connection.\n</p>\n",
"username": {
"description": "The username to use for the SSH connection",
"type": "text",
"key_display": "SSH username"
}
}
},
"computer-setup": {
"label": "{{ label }}",
Expand Down Expand Up @@ -215,7 +233,15 @@
"computer": {
"computer-configure": {
"safe_interval": 60,
"proxy_command": "ssh -q -Y {username}@ela.cscs.ch netcat daint.cscs.ch 22"
"username": "{{ username }}",
"metadata": {
"tooltip": "<p>\n Setup up the SSH connection.\n</p>\n",
"username": {
"description": "The username to use for the SSH connection",
"type": "text",
"key_display": "SSH username"
}
}
},
"computer-setup": {
"label": "{{ label }}",
Expand Down Expand Up @@ -296,7 +322,16 @@
"cpu": {
"computer": {
"computer-configure": {
"safe_interval": 60
"safe_interval": 60,
"username": "{{ username }}",
"metadata": {
"tooltip": "<p>\n Setup up the SSH connection.\n</p>\n",
"username": {
"description": "The username to use for the SSH connection",
"type": "text",
"key_display": "SSH username"
}
}
},
"computer-setup": {
"label": "{{ label }}",
Expand Down
8 changes: 6 additions & 2 deletions resource.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@
"computer-configure.yml": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"safe_interval": {
"type": "integer"
},
Expand All @@ -164,9 +167,10 @@
}
},
"required": [
"safe_interval"
"safe_interval",
"username"
],
"additionalProperties": false,
"additionalProperties": true,
"title": "Computer Configure"
},
"code.yml": {
Expand Down

0 comments on commit 2902f6d

Please sign in to comment.