From 38a5acb791a685a1b1fca12170033213ea8d37c8 Mon Sep 17 00:00:00 2001 From: Ashish Amarnath Date: Thu, 27 Jun 2019 18:58:12 -0700 Subject: [PATCH] fix provisioner name Signed-off-by: Ashish Amarnath ashish.amarnath@gmail.com --- .gitignore | 3 +++ cmd/capd-manager/main.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e1b6172..1581ba1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ capdctl capd-manager kind-test + +# vscode +.vscode diff --git a/cmd/capd-manager/main.go b/cmd/capd-manager/main.go index 49a76ad..de37527 100644 --- a/cmd/capd-manager/main.go +++ b/cmd/capd-manager/main.go @@ -61,7 +61,7 @@ func main() { machineActuator := actuators.NewMachineActuator(cs.ClusterV1alpha1(), k8sclientset.CoreV1()) // Register our cluster deployer (the interface is in clusterctl and we define the Deployer interface on the actuator) - common.RegisterClusterProvisioner("aws", clusterActuator) + common.RegisterClusterProvisioner("docker", clusterActuator) if err := apis.AddToScheme(mgr.GetScheme()); err != nil { panic(err) }