X Tutup
Skip to content

Commit b53f020

Browse files
committed
Remove azure driver temporarily
This commit temporarily removes Azure driver and its dependencies from the source tree and adds dependencies for the new Azure driver (so that Azure driver PR will not have godeps changes and will be easier to review). Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
1 parent 4093994 commit b53f020

File tree

142 files changed

+27207
-15472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+27207
-15472
lines changed

Godeps/Godeps.json

Lines changed: 43 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/machine.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
"github.com/docker/machine/commands"
1212
"github.com/docker/machine/commands/mcndirs"
1313
"github.com/docker/machine/drivers/amazonec2"
14-
"github.com/docker/machine/drivers/azure"
1514
"github.com/docker/machine/drivers/digitalocean"
1615
"github.com/docker/machine/drivers/exoscale"
1716
"github.com/docker/machine/drivers/generic"
@@ -169,8 +168,6 @@ func runDriver(driverName string) {
169168
switch driverName {
170169
case "amazonec2":
171170
plugin.RegisterDriver(amazonec2.NewDriver("", ""))
172-
case "azure":
173-
plugin.RegisterDriver(azure.NewDriver("", ""))
174171
case "digitalocean":
175172
plugin.RegisterDriver(digitalocean.NewDriver("", ""))
176173
case "exoscale":

0 commit comments

Comments
 (0)
X Tutup