Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2470,6 +2470,10 @@ relationshipdef
structdef
typedefs
testfailover
tmpfs
Tmpfs
npipe
nocopy
Orignal
Onprem
targetv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,41 @@
"sshSettings": {
"sshPublicAccess": "Disabled"
},
"customServices": [
{
"name": "rstudio-workbench",
"image": {
"type": "docker",
"reference": "ghcr.io/azure/rstudio-workbench:latest"
},
"environmentVariables": {
"RSP_LICENSE": {
"type": "local",
"value": "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
}
},
"docker": {
"privileged": true
},
"endpoints": [
{
"protocol": "http",
"name": "connect",
"target": 8787,
"published": 4444,
"hostIp": null
}
],
"volumes": [
{
"type": "bind",
"source": "/mnt/azureuser/",
"target": "/home/testuser/",
"readOnly": true
}
]
}
],
"computeInstanceAuthorizationType": "personal",
"personalComputeInstanceSettings": {
"assignedUser": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,53 @@
"adminUserName": "azureuser",
"sshPort": 22
},
"customServices": [
{
"name": "rstudio-workbench",
"image": {
"type": "docker",
"reference": "ghcr.io/azure/rstudio-workbench:latest"
},
"environmentVariables": {
"RSP_LICENSE": {
"type": "local",
"value": "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
}
},
"docker": {
"privileged": true
},
"endpoints": [
{
"protocol": "http",
"name": "connect",
"target": 8787,
"published": 4444,
"hostIp": null
}
],
"volumes": [
{
"type": "bind",
"source": "/mnt/azureuser/",
"target": "/home/testuser/",
"readOnly": true,
"consistency": "test",
"bind": {
"propagation": "test",
"createHostPath": true,
"selinux": "test"
},
"volume": {
"nocopy": true
},
"tmpfs": {
"size": 10
}
}
]
}
],
"computeInstanceAuthorizationType": "personal",
"personalComputeInstanceSettings": {
"assignedUser": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"parameters": {
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
"resourceGroupName": "testrg123",
"workspaceName": "workspaces123",
"computeName": "compute123",
"api-version": "2022-06-01-preview",
"customServices": [
{
"name": "rstudio-workbench",
"image": {
"type": "docker",
"reference": "ghcr.io/azure/rstudio-workbench:latest"
},
"environmentVariables": {
"RSP_LICENSE": {
"type": "local",
"value": "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
}
},
"docker": {
"privileged": true
},
"endpoints": [
{
"protocol": "http",
"name": "connect",
"target": 8787,
"published": 4444,
"hostIp": null
}
],
"volumes": [
{
"type": "bind",
"source": "/mnt/azureuser/",
"target": "/home/testuser/",
"readOnly": true
}
]
}
]
},
"responses": {
"200": {}
}
}
Loading