Fixed regression for extensions. Updated docs to remove the rootURL parameter. (#1463)

This commit is contained in:
RobBagby 2017-09-20 16:43:27 -07:00 коммит произвёл Jack Francis
Родитель 1cab24af86
Коммит 83e4fdb184
3 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -35,8 +35,7 @@ dcos task log hello-marathon
"extensionProfiles": [
{
"name": "hello-world-dcos",
"version": "v1",
"rootURL": "https://bagbyimages.blob.core.windows.net:443/"
"version": "v1"
}
]

Просмотреть файл

@ -36,7 +36,6 @@ ls -l /var/log
{
"name": "hello-world-dcos",
"version": "v1",
"rootURL": "https://bagbyimages.blob.core.windows.net:443/",
"script": "hello.sh"
}
]

Просмотреть файл

@ -1847,7 +1847,12 @@ func internalGetPoolLinkedTemplateText(extTargetVMNamePrefix, orchestratorType,
dta = strings.Replace(dta, "EXTENSION_PARAMETERS_REPLACE", extensionsParameterReference, -1)
dta = strings.Replace(dta, "EXTENSION_URL_REPLACE", extensionProfile.RootURL, -1)
dta = strings.Replace(dta, "EXTENSION_TARGET_VM_NAME_PREFIX", extTargetVMNamePrefix, -1)
dta = strings.Replace(dta, "EXTENSION_LOOP_COUNT", loopCount, -1)
if _, err := strconv.Atoi(loopCount); err == nil {
dta = strings.Replace(dta, "\"EXTENSION_LOOP_COUNT\"", loopCount, -1)
} else {
dta = strings.Replace(dta, "EXTENSION_LOOP_COUNT", loopCount, -1)
}
dta = strings.Replace(dta, "EXTENSION_LOOP_OFFSET", loopOffset, -1)
return dta, nil
}