fixed clusterInstallParameters (POSTINSTALLSCRIPTURI Script param was missing), Changed comments and echos in ShellScript to reflect Docker Swarm and not Mesos (#243)
This commit is contained in:
Родитель
64f2fb329f
Коммит
f3f9b1d6e5
|
@ -114,7 +114,7 @@
|
|||
},
|
||||
"windowsJumpboxSku": {
|
||||
"type": "string",
|
||||
"defaultValue": "2012-R2-Datacenter",
|
||||
"defaultValue": "2016-Datacenter",
|
||||
"metadata": {
|
||||
"description": "This is the windows sku used by the windows jumpbox"
|
||||
}
|
||||
|
@ -240,7 +240,7 @@
|
|||
"agentStorageAccountName": "[concat(variables('storageAccountBaseName'),'agent', variables('nameSuffix'))]",
|
||||
"jumpboxNSGName": "[concat(variables('orchestratorName'), '-jumpbox-nsg-', variables('nameSuffix'))]",
|
||||
"jumpboxNSGID": "[resourceId('Microsoft.Network/networkSecurityGroups',variables('jumpboxNSGName'))]",
|
||||
"clusterInstallParameters": "[concat(variables('masterCount'), ' ',variables('masterVMNamePrefix'), ' ',variables('masterFirstAddr'), ' ',variables('adminUsername'),' ',' ', ' ', variables('baseSubnet'))]",
|
||||
"clusterInstallParameters": "[concat(variables('masterCount'), ' ',variables('masterVMNamePrefix'), ' ',variables('masterFirstAddr'), ' ',variables('adminUsername'), ' ','disabled', ' ', variables('baseSubnet'))]",
|
||||
"jumpboxAddr": 4,
|
||||
"jumpboxVMName": "[concat('jumpboxVM-', variables('nameSuffix'))]",
|
||||
"jumpboxVMSize": "Standard_A1",
|
||||
|
|
|
@ -1,18 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
###########################################################
|
||||
# Configure Mesos One Box
|
||||
#
|
||||
# This installs the following components
|
||||
# - zookeepr
|
||||
# - mesos master
|
||||
# - marathon
|
||||
# - mesos agent
|
||||
# Configure Docker Swarm Master and Agent(s)
|
||||
###########################################################
|
||||
|
||||
set -x
|
||||
|
||||
echo "starting mesos cluster configuration"
|
||||
echo "starting Docker Swarm cluster configuration"
|
||||
date
|
||||
ps ax
|
||||
|
||||
|
@ -275,4 +269,4 @@ fi
|
|||
echo "processes at end of script"
|
||||
ps ax
|
||||
date
|
||||
echo "completed mesos cluster configuration"
|
||||
echo "completed Docker Swarm cluster configuration"
|
||||
|
|
Загрузка…
Ссылка в новой задаче