Added OVN and virtlet parameters to hosts.ini
[icn.git] / cmd / bpa-operator / pkg / controller / provisioning / provisioning_controller.go
1 package provisioning
2
3 import (
4         "context"
5         "os"
6         "fmt"
7         "time"
8         "bytes"
9         "regexp"
10         "strings"
11         "io/ioutil"
12         "encoding/json"
13
14         bpav1alpha1 "github.com/bpa-operator/pkg/apis/bpa/v1alpha1"
15         metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
16         corev1 "k8s.io/api/core/v1"
17         batchv1 "k8s.io/api/batch/v1"
18         "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
19         "k8s.io/apimachinery/pkg/runtime/schema"
20         "k8s.io/apimachinery/pkg/api/errors"
21         "k8s.io/apimachinery/pkg/runtime"
22         "k8s.io/client-go/dynamic"
23
24         "k8s.io/client-go/kubernetes"
25         "sigs.k8s.io/controller-runtime/pkg/client"
26         "sigs.k8s.io/controller-runtime/pkg/client/config"
27         "sigs.k8s.io/controller-runtime/pkg/controller"
28         "sigs.k8s.io/controller-runtime/pkg/handler"
29         "sigs.k8s.io/controller-runtime/pkg/manager"
30         "sigs.k8s.io/controller-runtime/pkg/reconcile"
31         logf "sigs.k8s.io/controller-runtime/pkg/runtime/log"
32         "sigs.k8s.io/controller-runtime/pkg/source"
33         "gopkg.in/ini.v1"
34         "golang.org/x/crypto/ssh"
35 )
36
37 type VirtletVM struct {
38         IPaddress string
39         MACaddress string
40 }
41
42 type NetworksStatus struct {
43         Name string `json:"name,omitempty"`
44         Interface string `json:"interface,omitempty"`
45         Ips []string `json:"ips,omitempty"`
46         Mac string `json:"mac,omitempty"`
47         Default bool `json:"default,omitempty"`
48         Dns interface{} `json:"dns,omitempty"`
49 }
50
51 var log = logf.Log.WithName("controller_provisioning")
52
53 /**
54 * USER ACTION REQUIRED: This is a scaffold file intended for the user to modify with their own Controller
55 * business logic.  Delete these comments after modifying this file.*
56  */
57
58 // Add creates a new Provisioning Controller and adds it to the Manager. The Manager will set fields on the Controller
59 // and Start it when the Manager is Started.
60 func Add(mgr manager.Manager) error {
61         return add(mgr, newReconciler(mgr))
62 }
63
64 // newReconciler returns a new reconcile.Reconciler
65 func newReconciler(mgr manager.Manager) reconcile.Reconciler {
66
67         config, err :=  config.GetConfig()
68         if err != nil {
69            fmt.Printf("Could not get kube config, Error: %v\n", err)
70         }
71
72        clientSet, err := kubernetes.NewForConfig(config)
73         if err != nil {
74            fmt.Printf("Could not create clientset, Error: %v\n", err)
75         }
76        bmhDynamicClient, err := dynamic.NewForConfig(config)
77
78        if err != nil {
79           fmt.Printf("Could not create dynamic client for bareMetalHosts, Error: %v\n", err)
80        }
81
82        return &ReconcileProvisioning{client: mgr.GetClient(), scheme: mgr.GetScheme(), clientset: clientSet, bmhClient: bmhDynamicClient }
83 }
84
85 // add adds a new Controller to mgr with r as the reconcile.Reconciler
86 func add(mgr manager.Manager, r reconcile.Reconciler) error {
87         // Create a new controller
88         c, err := controller.New("provisioning-controller", mgr, controller.Options{Reconciler: r})
89         if err != nil {
90                 return err
91         }
92
93         // Watch for changes to primary resource Provisioning
94         err = c.Watch(&source.Kind{Type: &bpav1alpha1.Provisioning{}}, &handler.EnqueueRequestForObject{})
95         if err != nil {
96                 return err
97         }
98
99         // Watch for changes to resource configmap created as a consequence of the provisioning CR
100         err = c.Watch(&source.Kind{Type: &corev1.ConfigMap{}}, &handler.EnqueueRequestForOwner{
101                 IsController: true,
102                 OwnerType:   &bpav1alpha1.Provisioning{},
103         })
104
105         if err != nil {
106                 return err
107         }
108
109        //Watch for changes to job resource also created as a consequence of the provisioning CR
110        err = c.Watch(&source.Kind{Type: &batchv1.Job{}}, &handler.EnqueueRequestForOwner{
111                 IsController: true,
112                 OwnerType:   &bpav1alpha1.Provisioning{},
113         })
114
115         if err != nil {
116                 return err
117         }
118
119         // Watch for changes to resource software CR
120         err = c.Watch(&source.Kind{Type: &bpav1alpha1.Software{}}, &handler.EnqueueRequestForObject{})
121         if err != nil {
122                 return err
123         }
124
125
126         return nil
127 }
128
129 // blank assignment to verify that ReconcileProvisioning implements reconcile.Reconciler
130 var _ reconcile.Reconciler = &ReconcileProvisioning{}
131
132 // ReconcileProvisioning reconciles a Provisioning object
133 type ReconcileProvisioning struct {
134         // This client, initialized using mgr.Client() above, is a split client
135         // that reads objects from the cache and writes to the apiserver
136         client client.Client
137         scheme *runtime.Scheme
138         clientset kubernetes.Interface
139         bmhClient dynamic.Interface
140 }
141
142 // Reconcile reads that state of the cluster for a Provisioning object and makes changes based on the state read
143 // and what is in the Provisioning.Spec
144 // TODO(user): Modify this Reconcile function to implement your Controller logic.  This example creates
145 // a Pod as an example
146 // Note:
147 // The Controller will requeue the Request to be processed again if the returned error is non-nil or
148 // Result.Requeue is true, otherwise upon completion it will remove the work from the queue.
149 func (r *ReconcileProvisioning) Reconcile(request reconcile.Request) (reconcile.Result, error) {
150         reqLogger := log.WithValues("Request.Namespace", request.Namespace, "Request.Name", request.Name)
151         fmt.Printf("\n\n")
152         reqLogger.Info("Reconciling Custom Resource")
153
154
155
156         // Fetch the Provisioning instance
157         provisioningInstance := &bpav1alpha1.Provisioning{}
158         softwareInstance := &bpav1alpha1.Software{}
159         err := r.client.Get(context.TODO(), request.NamespacedName, provisioningInstance)
160         provisioningCreated := true
161         if err != nil {
162
163                          //Check if its a Software Instance
164                          err = r.client.Get(context.TODO(), request.NamespacedName, softwareInstance)
165                          if err != nil {
166                              if errors.IsNotFound(err) {
167                                 // Request object not found, could have been deleted after reconcile request.
168                                 // Owned objects are automatically garbage collected. For additional cleanup logic use finalizers.
169                                 // Return and don't requeue
170                                 return reconcile.Result{}, nil
171                              }
172
173                          // Error reading the object - requeue the request.
174                          return reconcile.Result{}, err
175                          }
176
177                          //No error occured and so a Software CR was created not a Provisoning CR
178                          provisioningCreated = false
179         }
180
181
182         masterTag := "MASTER_"
183         workerTag := "WORKER_"
184
185         if provisioningCreated {
186
187         ///////////////////////////////////////////////////////////////////////////////////////////////
188         ////////////////         Provisioning CR was created so install KUD          /////////////////
189         //////////////////////////////////////////////////////////////////////////////////////////////
190         clusterName := provisioningInstance.Labels["cluster"]
191         clusterType := provisioningInstance.Labels["cluster-type"]
192         mastersList := provisioningInstance.Spec.Masters
193         workersList := provisioningInstance.Spec.Workers
194         kudPlugins := provisioningInstance.Spec.KUDPlugins
195
196
197         bareMetalHostList, _ := listBareMetalHosts(r.bmhClient)
198         virtletVMList, _ := listVirtletVMs(r.clientset)
199
200
201
202
203         var allString string
204         var masterString string
205         var workerString string
206
207         dhcpLeaseFile := "/var/lib/dhcp/dhcpd.leases"
208         multiClusterDir := "/multi-cluster"
209
210         //Create Directory for the specific cluster
211         clusterDir := multiClusterDir + "/" + clusterName
212         os.MkdirAll(clusterDir, os.ModePerm)
213
214         //Create Maps to be used for cluster ip address to label configmap
215         clusterLabel := make(map[string]string)
216         clusterLabel["cluster"] = clusterName
217         clusterData := make(map[string]string)
218
219
220
221        //Iterate through mastersList and get all the mac addresses and IP addresses
222        for _, masterMap := range mastersList {
223
224                 for masterLabel, master := range masterMap {
225                    masterMAC := master.MACaddress
226                    hostIPaddress := ""
227
228                    if masterMAC == "" {
229                       err = fmt.Errorf("MAC address for masterNode %s not provided\n", masterLabel)
230                       return reconcile.Result{}, err
231                    }
232
233                    containsMac, bmhCR := checkMACaddress(bareMetalHostList, masterMAC)
234
235                    //Check 'cluster-type' label for Virtlet VMs
236                    if clusterType == "virtlet-vm" {
237                        //Get VM IP address of master
238                        hostIPaddress, err = getVMIPaddress(virtletVMList, masterMAC)
239                        if err != nil || hostIPaddress == "" {
240                            err = fmt.Errorf("IP address not found for VM with MAC address %s \n", masterMAC)
241                            return reconcile.Result{}, err
242                        }
243                        containsMac = true
244                    }
245
246                    if containsMac{
247
248                        if clusterType != "virtlet-vm" {
249                            fmt.Printf("BareMetalHost CR %s has NIC with MAC Address %s\n", bmhCR, masterMAC)
250
251                            //Get IP address of master
252                            hostIPaddress, err = getHostIPaddress(masterMAC, dhcpLeaseFile )
253                            if err != nil || hostIPaddress == ""{
254                                err = fmt.Errorf("IP address not found for host with MAC address %s \n", masterMAC)
255                                return reconcile.Result{}, err
256                            }
257                        }
258
259                        allString += masterLabel + "  ansible_ssh_host="  + hostIPaddress + " ansible_ssh_port=22" + "\n"
260                        masterString += masterLabel + "\n"
261                        clusterData[masterTag + masterLabel] = hostIPaddress
262
263                        fmt.Printf("%s : %s \n", hostIPaddress, masterMAC)
264
265                        if len(workersList) != 0 {
266
267                            //Iterate through workersList and get all the mac addresses
268                            for _, workerMap := range workersList {
269
270                                //Get worker labels from the workermap
271                                for workerLabel, worker := range workerMap {
272
273                                    //Check if workerString already contains worker label
274                                    containsWorkerLabel := strings.Contains(workerString, workerLabel)
275                                    workerMAC := worker.MACaddress
276                                    hostIPaddress = ""
277
278                                    //Error occurs if the same label is given to different hosts (assumption,
279                                    //each MAC address represents a unique host
280                                    if workerLabel == masterLabel && workerMAC != masterMAC && workerMAC != "" {
281                                      if containsWorkerLabel {
282                                             strings.ReplaceAll(workerString, workerLabel, "")
283                                          }
284                                       err = fmt.Errorf(`A node with label %s already exists, modify resource and assign a
285                                       different label to node with MACAddress %s`, workerLabel, workerMAC)
286                                       return reconcile.Result{}, err
287
288                                    //same node performs worker and master roles
289                                    } else if workerLabel == masterLabel && !containsWorkerLabel {
290                                         workerString += workerLabel + "\n"
291
292                                         //Add host to ip address config map with worker tag
293                                         hostIPaddress = clusterData[masterTag + masterLabel]
294                                         clusterData[workerTag + masterLabel] = hostIPaddress
295
296                                    //Error occurs if the same node is given different labels
297                                    } else if workerLabel != masterLabel && workerMAC == masterMAC {
298                                          if containsWorkerLabel {
299                                             strings.ReplaceAll(workerString, workerLabel, "")
300                                          }
301                                          err = fmt.Errorf(`A node with label %s already exists, modify resource and assign a
302                                                         different label to node with MACAddress %s`, workerLabel, workerMAC)
303                                          return reconcile.Result{}, err
304
305                                    //worker node is different from any master node and it has not been added to the worker list
306                                    } else if workerLabel != masterLabel && !containsWorkerLabel {
307
308                                         // Error occurs if MAC address not provided for worker node not matching master
309                                         if workerMAC == "" {
310                                           err = fmt.Errorf("MAC address for worker %s not provided", workerLabel)
311                                           return reconcile.Result{}, err
312                                          }
313
314                                         containsMac, bmhCR := checkMACaddress(bareMetalHostList, workerMAC)
315
316                                         if clusterType == "virtlet-vm" {
317                                             //Get VM IP address of master
318                                             hostIPaddress, err = getVMIPaddress(virtletVMList, workerMAC)
319                                             if err != nil || hostIPaddress == "" {
320                                                 err = fmt.Errorf("IP address not found for VM with MAC address %s \n", workerMAC)
321                                                 return reconcile.Result{}, err
322                                             }
323                                             containsMac = true
324                                         }
325
326                                         if containsMac{
327
328                                            if clusterType != "virtlet-vm" {
329                                                fmt.Printf("Host %s matches that macAddress\n", bmhCR)
330
331                                                //Get IP address of worker
332                                                hostIPaddress, err = getHostIPaddress(workerMAC, dhcpLeaseFile )
333                                                if err != nil {
334                                                    fmt.Errorf("IP address not found for host with MAC address %s \n", workerMAC)
335                                                    return reconcile.Result{}, err
336                                                }
337                                            }
338                                            fmt.Printf("%s : %s \n", hostIPaddress, workerMAC)
339
340
341                                            allString += workerLabel + "  ansible_ssh_host="  + hostIPaddress + " ansible_ssh_port=22" + "\n"
342                                            workerString += workerLabel + "\n"
343                                            clusterData[workerTag + workerLabel] = hostIPaddress
344
345                                        //No host found that matches the worker MAC
346                                        } else {
347
348                                             err = fmt.Errorf("Host with MAC Address %s not found\n", workerMAC)
349                                             return reconcile.Result{}, err
350                                           }
351                                    }
352                              }
353                        }
354                    //No worker node specified, add master as worker node
355                    } else if len(workersList) == 0 && !strings.Contains(workerString, masterLabel) {
356                        workerString += masterLabel + "\n"
357
358                        //Add host to ip address config map with worker tag
359                        hostIPaddress = clusterData[masterTag + masterLabel]
360                        clusterData[workerTag + masterLabel] = hostIPaddress
361                    }
362
363                    //No host matching master MAC found
364                    } else {
365                       err = fmt.Errorf("Host with MAC Address %s not found\n", masterMAC)
366                       return reconcile.Result{}, err
367                    }
368              }
369         }
370
371         //Create host.ini file
372         //iniHostFilePath := kudInstallerScript + "/inventory/hosts.ini"
373         iniHostFilePath := clusterDir + "/hosts.ini"
374         newFile, err := os.Create(iniHostFilePath)
375         defer newFile.Close()
376
377
378         if err != nil {
379            fmt.Printf("Error occured while creating file \n %v", err)
380            return reconcile.Result{}, err
381         }
382
383         hostFile, err := ini.Load(iniHostFilePath)
384         if err != nil {
385            fmt.Printf("Error occured while Loading file \n %v", err)
386            return reconcile.Result{}, err
387         }
388
389         _, err = hostFile.NewRawSection("all", allString)
390         if err != nil {
391            fmt.Printf("Error occured while creating section \n %v", err)
392            return reconcile.Result{}, err
393         }
394         _, err = hostFile.NewRawSection("kube-master", masterString)
395         if err != nil {
396            fmt.Printf("Error occured while creating section \n %v", err)
397            return reconcile.Result{}, err
398         }
399
400         _, err = hostFile.NewRawSection("kube-node", workerString)
401         if err != nil {
402            fmt.Printf("Error occured while creating section \n %v", err)
403            return reconcile.Result{}, err
404         }
405
406         _, err = hostFile.NewRawSection("etcd", masterString)
407         if err != nil {
408            fmt.Printf("Error occured while creating section \n %v", err)
409            return reconcile.Result{}, err
410         }
411
412         _, err = hostFile.NewRawSection("ovn-central", masterString)
413         if err != nil {
414            fmt.Printf("Error occured while creating section \n %v", err)
415            return reconcile.Result{}, err
416         }
417
418         _, err = hostFile.NewRawSection("ovn-controller", workerString)
419         if err != nil {
420            fmt.Printf("Error occured while creating section \n %v", err)
421            return reconcile.Result{}, err
422         }
423
424         _, err = hostFile.NewRawSection("virtlet", workerString)
425         if err != nil {
426            fmt.Printf("Error occured while creating section \n %v", err)
427            return reconcile.Result{}, err
428         }
429
430         _, err = hostFile.NewRawSection("k8s-cluster:children", "kube-node\n" + "kube-master")
431         if err != nil {
432            fmt.Printf("Error occured while creating section \n %v", err)
433            return reconcile.Result{}, err
434         }
435
436
437         //Create host.ini file for KUD
438         hostFile.SaveTo(iniHostFilePath)
439
440         //Install KUD
441         err = createKUDinstallerJob(clusterName, request.Namespace, clusterLabel, kudPlugins,  r.clientset)
442         if err != nil {
443            fmt.Printf("Error occured while creating KUD Installer job for cluster %v\n ERROR: %v", clusterName, err)
444            return reconcile.Result{}, err
445         }
446
447         //Start separate thread to keep checking job status, Create an IP address configmap
448         //for cluster if KUD is successfully installed
449         go checkJob(clusterName, request.Namespace, clusterData, clusterLabel, r.clientset)
450
451         return reconcile.Result{}, nil
452
453        }
454
455
456
457         ///////////////////////////////////////////////////////////////////////////////////////////////
458         ////////////////         Software CR was created so install software         /////////////////
459         //////////////////////////////////////////////////////////////////////////////////////////////
460         softwareClusterName, masterSoftwareList, workerSoftwareList := getSoftwareList(softwareInstance)
461         defaultSSHPrivateKey := "/root/.ssh/id_rsa"
462
463         //Get IP address configmap for the cluster
464         clusterConfigMapData, err := getConfigMapData(request.Namespace, softwareClusterName, r.clientset)
465         if err != nil {
466            fmt.Printf("Error occured while retrieving IP address Data for cluster %s, ERROR: %v\n", softwareClusterName, err)
467            return reconcile.Result{}, err
468         }
469
470         for hostLabel, ipAddress := range clusterConfigMapData {
471
472             if strings.Contains(hostLabel, masterTag) {
473                // Its a master node, install master software
474                err = softwareInstaller(ipAddress, defaultSSHPrivateKey, masterSoftwareList)
475                if err != nil {
476                   fmt.Printf("Error occured while installing master software in host %s, ERROR: %v\n", hostLabel, err)
477                }
478             } else if strings.Contains(hostLabel, workerTag) {
479               // Its a worker node, install worker software
480               err = softwareInstaller(ipAddress, defaultSSHPrivateKey, workerSoftwareList)
481               if err != nil {
482                   fmt.Printf("Error occured while installing worker software in host %s, ERROR: %v\n", hostLabel, err)
483                }
484
485             }
486
487         }
488
489         return reconcile.Result{}, nil
490 }
491
492 //Function to Get List containing baremetal hosts
493 func listBareMetalHosts(bmhDynamicClient dynamic.Interface) (*unstructured.UnstructuredList, error) {
494
495     //Create GVR representing a BareMetalHost CR
496     bmhGVR := schema.GroupVersionResource{
497       Group:    "metal3.io",
498       Version:  "v1alpha1",
499       Resource: "baremetalhosts",
500     }
501
502     //Get List containing all BareMetalHosts CRs
503     bareMetalHosts, err := bmhDynamicClient.Resource(bmhGVR).List(metav1.ListOptions{})
504     if err != nil {
505        fmt.Printf("Error occured, cannot get BareMetalHosts list, Error: %v\n", err)
506        return &unstructured.UnstructuredList{}, err
507     }
508
509     return bareMetalHosts, nil
510 }
511
512
513 //Function to check if BareMetalHost containing MAC address exist
514 func checkMACaddress(bareMetalHostList *unstructured.UnstructuredList, macAddress string) (bool, string) {
515
516      //Convert macAddress to byte array for comparison
517      macAddressByte :=  []byte(macAddress)
518      macBool := false
519
520      for _, bareMetalHost := range bareMetalHostList.Items {
521          bmhJson, _ := bareMetalHost.MarshalJSON()
522
523          macBool = bytes.Contains(bmhJson, macAddressByte)
524          if macBool{
525              return macBool, bareMetalHost.GetName()
526          }
527
528       }
529
530          return macBool, ""
531
532 }
533
534
535 //Function to get the IP address of a host from the DHCP file
536 func getHostIPaddress(macAddress string, dhcpLeaseFilePath string ) (string, error) {
537
538      //Read the dhcp lease file
539      dhcpFile, err := ioutil.ReadFile(dhcpLeaseFilePath)
540      if err != nil {
541         fmt.Printf("Failed to read lease file\n")
542         return "", err
543      }
544
545      dhcpLeases := string(dhcpFile)
546
547      //Regex to use to search dhcpLeases
548      reg := "lease.*{|ethernet.*|\n. binding state.*"
549      re, err := regexp.Compile(reg)
550      if err != nil {
551         fmt.Printf("Could not create Regexp object, Error %v occured\n", err)
552         return "", err
553      }
554
555      //Get String containing leased Ip addresses and Corressponding MAC addresses
556      out := re.FindAllString(dhcpLeases, -1)
557      outString := strings.Join(out, " ")
558      stringReplacer := strings.NewReplacer("lease", "", "ethernet ", "", ";", "",
559      " binding state", "", "{", "")
560      replaced := stringReplacer.Replace(outString)
561      ipMacList := strings.Fields(replaced)
562
563
564      //Get IP addresses corresponding to Input MAC Address
565      for idx := len(ipMacList)-1 ; idx >= 0; idx -- {
566          item := ipMacList[idx]
567          if item == macAddress  {
568
569             leaseState := ipMacList[idx -1]
570             if leaseState != "active" {
571                err := fmt.Errorf("No active ip address lease found for MAC address %s \n", macAddress)
572                fmt.Printf("%v\n", err)
573                return "", err
574             }
575             ipAdd := ipMacList[idx - 2]
576             return ipAdd, nil
577     }
578
579  }
580      return "", nil
581 }
582
583 //Function to create configmap 
584 func createConfigMap(data, labels map[string]string, namespace string, clientset kubernetes.Interface) error{
585
586      configmapClient := clientset.CoreV1().ConfigMaps(namespace)
587
588      configmap := &corev1.ConfigMap{
589
590         ObjectMeta: metav1.ObjectMeta{
591                         Name: labels["cluster"] + "-configmap",
592                         Labels: labels,
593                 },
594         Data: data,
595      }
596
597
598       _, err := configmapClient.Create(configmap)
599       if err != nil {
600          return err
601
602       }
603       return nil
604
605 }
606
607 //Function to get configmap Data
608 func getConfigMapData(namespace, clusterName string, clientset kubernetes.Interface) (map[string]string, error) {
609
610      configmapClient := clientset.CoreV1().ConfigMaps(namespace)
611      configmapName := clusterName + "-configmap"
612      clusterConfigmap, err := configmapClient.Get(configmapName, metav1.GetOptions{})
613      if err != nil {
614         return nil, err
615      }
616
617      configmapData := clusterConfigmap.Data
618      return configmapData, nil
619 }
620
621 //Function to create job for KUD installation
622 func createKUDinstallerJob(clusterName, namespace string, labels map[string]string, kudPlugins []string, clientset kubernetes.Interface) error{
623
624     var backOffLimit int32 = 0
625     var privi bool = true
626
627     installerString := " ./installer --cluster " + clusterName
628
629     // Check if any plugin was specified
630     if len(kudPlugins) > 0 {
631             plugins := " --plugins"
632
633             for _, plug := range kudPlugins {
634                plugins += " " + plug
635             }
636
637            installerString += plugins
638     }
639
640
641     jobClient := clientset.BatchV1().Jobs("default")
642
643         job := &batchv1.Job{
644
645         ObjectMeta: metav1.ObjectMeta{
646                         Name: "kud-" + clusterName,
647                        Labels: labels,
648                 },
649                 Spec: batchv1.JobSpec{
650                       Template: corev1.PodTemplateSpec{
651                                 ObjectMeta: metav1.ObjectMeta{
652                                         Labels: labels,
653                                 },
654
655
656                         Spec: corev1.PodSpec{
657                               HostNetwork: true,
658                               Containers: []corev1.Container{{
659                                           Name: "kud",
660                                           Image: "github.com/onap/multicloud-k8s:latest",
661                                           ImagePullPolicy: "IfNotPresent",
662                                           VolumeMounts: []corev1.VolumeMount{{
663                                                         Name: "multi-cluster",
664                                                         MountPath: "/opt/kud/multi-cluster",
665                                                         },
666                                                         {
667                                                         Name: "secret-volume",
668                                                         MountPath: "/.ssh",
669                                                         },
670
671                                            },
672                                            Command: []string{"/bin/sh","-c"},
673                                            Args: []string{"cp -r /.ssh /root/; chmod -R 600 /root/.ssh;" + installerString},
674                                            SecurityContext: &corev1.SecurityContext{
675                                                             Privileged : &privi,
676
677                                            },
678                                           },
679                                  },
680                                  Volumes: []corev1.Volume{{
681                                           Name: "multi-cluster",
682                                           VolumeSource: corev1.VolumeSource{
683                                                        HostPath: &corev1.HostPathVolumeSource{
684                                                               Path : "/opt/kud/multi-cluster",
685                                                      }}},
686                                           {
687                                           Name: "secret-volume",
688                                           VolumeSource: corev1.VolumeSource{
689                                                         Secret: &corev1.SecretVolumeSource{
690                                                               SecretName: "ssh-key-secret",
691                                                         },
692
693                                           }}},
694                                  RestartPolicy: "Never",
695                               },
696
697                              },
698                              BackoffLimit : &backOffLimit,
699                              },
700
701                          }
702                     _, err := jobClient.Create(job)
703                     if err != nil {
704                        fmt.Printf("ERROR occured while creating job to install KUD\n ERROR:%v", err)
705                        return err
706                     }
707                     return nil
708
709 }
710
711 //Function to Check if job succeeded
712 func checkJob(clusterName, namespace string, data, labels map[string]string, clientset kubernetes.Interface) {
713
714      fmt.Printf("\nChecking job status for cluster %s\n", clusterName)
715      jobName := "kud-" + clusterName
716      jobClient := clientset.BatchV1().Jobs(namespace)
717
718      for {
719          time.Sleep(2 * time.Second)
720
721          job, err := jobClient.Get(jobName, metav1.GetOptions{})
722          if err != nil {
723             fmt.Printf("ERROR: %v occured while retrieving job: %s", err, jobName)
724             return
725          }
726          jobSucceeded := job.Status.Succeeded
727          jobFailed := job.Status.Failed
728
729          if jobSucceeded == 1 {
730             fmt.Printf("\n Job succeeded, KUD successfully installed in Cluster %s\n", clusterName)
731
732             //KUD was installed successfully create configmap to store IP address info for the cluster
733             err = createConfigMap(data, labels, namespace, clientset)
734             if err != nil {
735                fmt.Printf("Error occured while creating Ip address configmap for cluster %v\n ERROR: %v", clusterName, err)
736                return
737             }
738             return
739          }
740
741         if jobFailed == 1 {
742            fmt.Printf("\n Job Failed, KUD not installed in Cluster %s, check pod logs\n", clusterName)
743            return
744         }
745
746      }
747     return
748
749 }
750
751 //Function to get software list from software CR
752 func getSoftwareList(softwareCR *bpav1alpha1.Software) (string, []interface{}, []interface{}) {
753
754      CRclusterName := softwareCR.GetLabels()["cluster"]
755
756      masterSofwareList := softwareCR.Spec.MasterSoftware
757      workerSoftwareList := softwareCR.Spec.WorkerSoftware
758
759      return CRclusterName, masterSofwareList, workerSoftwareList
760 }
761
762 //Function to install software in clusterHosts
763 func softwareInstaller(ipAddress, sshPrivateKey string, softwareList []interface{}) error {
764
765      var installString string
766      for _, software := range softwareList {
767
768         switch t := software.(type){
769         case string:
770              installString += software.(string) + " "
771         case interface{}:
772              softwareMap, errBool := software.(map[string]interface{})
773              if !errBool {
774                 fmt.Printf("Error occured, cannot install software %v\n", software)
775              }
776              for softwareName, versionMap := range softwareMap {
777
778                  versionMAP, _ := versionMap.(map[string]interface{})
779                  version := versionMAP["version"].(string)
780                  installString += softwareName + "=" + version + " "
781              }
782         default:
783             fmt.Printf("invalid format %v\n", t)
784         }
785
786      }
787
788      err := sshInstaller(installString, sshPrivateKey, ipAddress)
789      if err != nil {
790         return err
791      }
792      return nil
793
794 }
795
796 //Function to Run Installation commands via ssh
797 func sshInstaller(softwareString, sshPrivateKey, ipAddress string) error {
798
799      buffer, err := ioutil.ReadFile(sshPrivateKey)
800      if err != nil {
801         return err
802      }
803
804      key, err := ssh.ParsePrivateKey(buffer)
805      if err != nil {
806         return err
807      }
808
809      sshConfig := &ssh.ClientConfig{
810         User: "root",
811         Auth: []ssh.AuthMethod{
812               ssh.PublicKeys(key),
813      },
814
815      HostKeyCallback: ssh.InsecureIgnoreHostKey(),
816      }
817
818     client, err := ssh.Dial("tcp", ipAddress + ":22", sshConfig)
819     if err != nil {
820        return err
821     }
822
823     session, err := client.NewSession()
824     if err != nil {
825        return err
826     }
827
828     defer session.Close()
829     defer client.Close()
830
831     cmd := "sudo apt-get update && apt-get install " + softwareString + "-y"
832     err = session.Start(cmd)
833
834     if err != nil {
835        return err
836     }
837
838     return nil
839
840 }
841
842 func listVirtletVMs(clientset kubernetes.Interface) ([]VirtletVM, error) {
843
844         var vmPodList []VirtletVM
845
846         pods, err := clientset.CoreV1().Pods("").List(metav1.ListOptions{})
847         if err != nil {
848                 fmt.Printf("Could not get pod info, Error: %v\n", err)
849                 return []VirtletVM{}, err
850         }
851
852         for _, pod := range pods.Items {
853                 var podAnnotation map[string]interface{}
854                 var podStatus corev1.PodStatus
855                 var podDefaultNetStatus []NetworksStatus
856
857                 annotation, err := json.Marshal(pod.ObjectMeta.GetAnnotations())
858                 if err != nil {
859                         fmt.Printf("Could not get pod annotations, Error: %v\n", err)
860                         return []VirtletVM{}, err
861                 }
862
863                 json.Unmarshal([]byte(annotation), &podAnnotation)
864                 if podAnnotation != nil && podAnnotation["kubernetes.io/target-runtime"] != nil {
865                         runtime := podAnnotation["kubernetes.io/target-runtime"].(string)
866
867                         podStatusJson, _ := json.Marshal(pod.Status)
868                         json.Unmarshal([]byte(podStatusJson), &podStatus)
869
870                         if runtime  == "virtlet.cloud" && podStatus.Phase == "Running" && podAnnotation["v1.multus-cni.io/default-network"] != nil {
871                                 ns := podAnnotation["v1.multus-cni.io/default-network"].(string)
872                                 json.Unmarshal([]byte(ns), &podDefaultNetStatus)
873
874                                 vmPodList = append(vmPodList, VirtletVM{podStatus.PodIP, podDefaultNetStatus[0].Mac})
875                         }
876                 }
877         }
878
879         return vmPodList, nil
880 }
881
882 func getVMIPaddress(vmList []VirtletVM, macAddress string) (string, error) {
883
884         for i := 0; i < len(vmList); i++ {
885                 if vmList[i].MACaddress == macAddress {
886                         return vmList[i].IPaddress, nil
887                 }
888         }
889         return "", nil
890 }