Add support for additional disks for config-local (#5030) (#5040)

* Add support for additional disks for config-local

(cherry picked from commit e4861f52e0)
This commit is contained in:
mergify[bot]
2019-07-12 10:01:07 -06:00
committed by Dan Albert
parent 086e20f6c7
commit 81dbe3c49b
7 changed files with 121 additions and 4 deletions

View File

@@ -309,3 +309,12 @@ cloud_FetchFile() {
cloud_GetConfigValueFromInstanceName "$instanceName" osProfile.adminUsername
scp "${config_value}@${publicIp}:${remoteFile}" "$localFile"
}
#
# cloud_CreateAndAttachPersistentDisk
#
# Not yet implemented for this cloud provider
cloud_CreateAndAttachPersistentDisk() {
echo "ERROR: cloud_CreateAndAttachPersistentDisk is not yet implemented for azure"
exit 1
}