forked from cloud-ark/kubeplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformcontroller.go
663 lines (575 loc) · 22.3 KB
/
platformcontroller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
package main
import (
"fmt"
"time"
"io/ioutil"
"log"
"strconv"
"strings"
_ "github.com/lib/pq"
"net/http"
"net/url"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
"github.com/golang/glog"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/wait"
kubeinformers "k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes/scheme"
typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
appslisters "k8s.io/client-go/listers/apps/v1"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/record"
"k8s.io/client-go/util/workqueue"
platformworkflowv1alpha1 "github.com/cloud-ark/kubeplus/platform-operator/pkg/apis/workflowcontroller/v1alpha1"
clientset "github.com/cloud-ark/kubeplus/platform-operator/pkg/client/clientset/versioned"
platformstackscheme "github.com/cloud-ark/kubeplus/platform-operator/pkg/client/clientset/versioned/scheme"
informers "github.com/cloud-ark/kubeplus/platform-operator/pkg/client/informers/externalversions"
listers "github.com/cloud-ark/kubeplus/platform-operator/pkg/client/listers/workflowcontroller/v1alpha1"
apiextensionsclientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
"k8s.io/client-go/rest"
)
const controllerAgentName = "platformstack-controller"
const (
// SuccessSynced is used as part of the Event 'reason' when PlatformStack is synced
SuccessSynced = "Synced"
// ErrResourceExists is used as part of the Event 'reason' when a Foo fails
// to sync due to a Deployment of the same name already existing.
ErrResourceExists = "ErrResourceExists"
// MessageResourceExists is the message used for Events when a resource
// fails to sync due to a Deployment already existing
MessageResourceExists = "Resource %q already exists and is not managed by PlatformStack"
// MessageResourceSynced is the message used for an Event fired when a Foo
// is synced successfully
MessageResourceSynced = "PlatformStack synced successfully"
// Annotations to put on Consumer CRDs.
CREATED_BY_KEY = "created-by"
CREATED_BY_VALUE = "kubeplus"
HELMER_HOST = "localhost"
HELMER_PORT = "8090"
)
// Controller is the controller implementation for Foo resources
type Controller struct {
// kubeclientset is a standard kubernetes clientset
kubeclientset kubernetes.Interface
// sampleclientset is a clientset for our own API group
platformStackclientset clientset.Interface
deploymentsLister appslisters.DeploymentLister
deploymentsSynced cache.InformerSynced
platformStacksLister listers.ResourceCompositionLister
platformStacksSynced cache.InformerSynced
// workqueue is a rate limited work queue. This is used to queue work to be
// processed instead of performing it as soon as a change happens. This
// means we can ensure we only process a fixed amount of resources at a
// time, and makes it easy to ensure we are never processing the same item
// simultaneously in two different workers.
workqueue workqueue.RateLimitingInterface
// recorder is an event recorder for recording Event resources to the
// Kubernetes API.
recorder record.EventRecorder
}
// NewController returns a new sample controller
func NewPlatformController(
kubeclientset kubernetes.Interface,
platformStackclientset clientset.Interface,
kubeInformerFactory kubeinformers.SharedInformerFactory,
platformstackInformerFactory informers.SharedInformerFactory) *Controller {
// obtain references to shared index informers for the Deployment and PlatformStack
// types.
deploymentInformer := kubeInformerFactory.Apps().V1().Deployments()
platformStackInformer := platformstackInformerFactory.Workflows().V1alpha1().ResourceCompositions()
// Create event broadcaster
// Add platformstack-controller types to the default Kubernetes Scheme so Events can be
// logged for platformstack-controller types.
platformstackscheme.AddToScheme(scheme.Scheme)
glog.V(4).Info("Creating event broadcaster")
eventBroadcaster := record.NewBroadcaster()
eventBroadcaster.StartLogging(glog.Infof)
eventBroadcaster.StartRecordingToSink(&typedcorev1.EventSinkImpl{Interface: kubeclientset.CoreV1().Events("")})
recorder := eventBroadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: controllerAgentName})
controller := &Controller{
kubeclientset: kubeclientset,
platformStackclientset: platformStackclientset,
deploymentsLister: deploymentInformer.Lister(),
deploymentsSynced: deploymentInformer.Informer().HasSynced,
platformStacksLister: platformStackInformer.Lister(),
platformStacksSynced: platformStackInformer.Informer().HasSynced,
workqueue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "PlatformStacks"),
recorder: recorder,
}
glog.Info("Setting up event handlers")
// Set up an event handler for when Foo resources change
platformStackInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
AddFunc: controller.enqueueFoo,
UpdateFunc: func(old, new interface{}) {
newDepl := new.(*platformworkflowv1alpha1.ResourceComposition)
oldDepl := old.(*platformworkflowv1alpha1.ResourceComposition)
//fmt.Println("New Version:%s", newDepl.ResourceVersion)
//fmt.Println("Old Version:%s", oldDepl.ResourceVersion)
if newDepl.ResourceVersion == oldDepl.ResourceVersion {
// Periodic resync will send update events for all known Deployments.
// Two different versions of the same Deployment will always have different RVs.
return
} else {
controller.enqueueFoo(new)
}
},
DeleteFunc: func(obj interface{}) {
_, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
if err == nil {
controller.deleteFoo(obj)
}
},
})
return controller
}
// Run will set up the event handlers for types we are interested in, as well
// as syncing informer caches and starting workers. It will block until stopCh
// is closed, at which point it will shutdown the workqueue and wait for
// workers to finish processing their current work items.
func (c *Controller) Run(threadiness int, stopCh <-chan struct{}) error {
defer runtime.HandleCrash()
defer c.workqueue.ShutDown()
// Start the informer factories to begin populating the informer caches
glog.Info("Starting PlatformStack controller")
// Wait for the caches to be synced before starting workers
glog.Info("Waiting for informer caches to sync")
if ok := cache.WaitForCacheSync(stopCh, c.deploymentsSynced, c.platformStacksSynced); !ok {
return fmt.Errorf("failed to wait for caches to sync")
}
glog.Info("Starting workers")
// Launch two workers to process Foo resources
for i := 0; i < threadiness; i++ {
go wait.Until(c.runWorker, time.Second, stopCh)
}
glog.Info("Started workers")
<-stopCh
glog.Info("Shutting down workers")
return nil
}
// runWorker is a long-running function that will continually call the
// processNextWorkItem function in order to read and process a message on the
// workqueue.
func (c *Controller) runWorker() {
for c.processNextWorkItem() {
}
}
// processNextWorkItem will read a single work item off the workqueue and
// attempt to process it, by calling the syncHandler.
func (c *Controller) processNextWorkItem() bool {
obj, shutdown := c.workqueue.Get()
if shutdown {
return false
}
// We wrap this block in a func so we can defer c.workqueue.Done.
err := func(obj interface{}) error {
// We call Done here so the workqueue knows we have finished
// processing this item. We also must remember to call Forget if we
// do not want this work item being re-queued. For example, we do
// not call Forget if a transient error occurs, instead the item is
// put back on the workqueue and attempted again after a back-off
// period.
defer c.workqueue.Done(obj)
var key string
var ok bool
// We expect strings to come off the workqueue. These are of the
// form namespace/name. We do this as the delayed nature of the
// workqueue means the items in the informer cache may actually be
// more up to date that when the item was initially put onto the
// workqueue.
if key, ok = obj.(string); !ok {
// As the item in the workqueue is actually invalid, we call
// Forget here else we'd go into a loop of attempting to
// process a work item that is invalid.
c.workqueue.Forget(obj)
runtime.HandleError(fmt.Errorf("expected string in workqueue but got %#v", obj))
return nil
}
// Run the syncHandler, passing it the namespace/name string of the
// Foo resource to be synced.
if err := c.syncHandler(key); err != nil {
return fmt.Errorf("error syncing '%s': %s", key, err.Error())
}
// Finally, if no error occurs we Forget this item so it does not
// get queued again until another change happens.
c.workqueue.Forget(obj)
glog.Infof("Successfully synced '%s'", key)
return nil
}(obj)
if err != nil {
runtime.HandleError(err)
return true
}
return true
}
// enqueueFoo takes a Foo resource and converts it into a namespace/name
// string which is then put onto the work queue. This method should *not* be
// passed resources of any type other than Foo.
func (c *Controller) enqueueFoo(obj interface{}) {
var key string
var err error
if key, err = cache.MetaNamespaceKeyFunc(obj); err != nil {
runtime.HandleError(err)
return
}
c.workqueue.AddRateLimited(key)
}
// handleObject will take any resource implementing metav1.Object and attempt
// to find the Foo resource that 'owns' it. It does this by looking at the
// objects metadata.ownerReferences field for an appropriate OwnerReference.
// It then enqueues that Foo resource to be processed. If the object does not
// have an appropriate OwnerReference, it will simply be skipped.
func (c *Controller) handleObject(obj interface{}) {
var object metav1.Object
var ok bool
if object, ok = obj.(metav1.Object); !ok {
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
if !ok {
runtime.HandleError(fmt.Errorf("error decoding object, invalid type"))
return
}
object, ok = tombstone.Obj.(metav1.Object)
if !ok {
runtime.HandleError(fmt.Errorf("error decoding object tombstone, invalid type"))
return
}
glog.V(4).Infof("Recovered deleted object '%s' from tombstone", object.GetName())
}
glog.V(4).Infof("Processing object: %s", object.GetName())
if ownerRef := metav1.GetControllerOf(object); ownerRef != nil {
// If this object is not owned by a Foo, we should not do anything more
// with it.
if ownerRef.Kind != "Foo" {
return
}
foo, err := c.platformStacksLister.ResourceCompositions(object.GetNamespace()).Get(ownerRef.Name)
if err != nil {
glog.V(4).Infof("ignoring orphaned object '%s' of foo '%s'", object.GetSelfLink(), ownerRef.Name)
return
}
c.enqueueFoo(foo)
return
}
}
func (c *Controller) deleteFoo(obj interface{}) {
fmt.Println("Inside delete Foo")
var err error
if _, err = cache.MetaNamespaceKeyFunc(obj); err != nil {
panic(err)
}
foo := obj.(*platformworkflowv1alpha1.ResourceComposition)
fmt.Printf("JKL\n")
fmt.Printf("%v\n", foo.Spec)
newRes := foo.Spec.NewResource
fmt.Printf("newRes:%v\n", newRes)
namespace := foo.ObjectMeta.Namespace
if namespace == "" {
namespace = "default"
}
res := newRes.Resource
fmt.Printf("GHI - delete\n")
fmt.Printf("%v\n NS:%s", res, namespace)
kind := foo.Spec.NewResource.Resource.Kind
group := foo.Spec.NewResource.Resource.Group
version := foo.Spec.NewResource.Resource.Version
plural := foo.Spec.NewResource.Resource.Plural
chartURL := foo.Spec.NewResource.ChartURL
chartName := foo.Spec.NewResource.ChartName
fmt.Printf("Kind:%s, Version:%s Group:%s, Plural:%s\n", kind, version, group, plural)
fmt.Printf("ChartURL:%s, ChartName:%s\n", chartURL, chartName)
action := "delete"
handleCRD(kind, version, group, plural, action, namespace)
resPolicySpec := foo.Spec.ResPolicy
//fmt.Printf("ResPolicySpec:%v\n",resPolicySpec)
deleteResourcePolicy(resPolicySpec, namespace)
resMonitorSpec := foo.Spec.ResMonitor
//fmt.Printf("ResMonitorSpec:%v\n",resMonitorSpec)
deleteResourceMonitor(resMonitorSpec, namespace)
c.recorder.Event(foo, corev1.EventTypeNormal, SuccessSynced, MessageResourceSynced)
}
// syncHandler compares the actual state with the desired, and attempts to
// converge the two. It then updates the Status block of the Foo resource
// with the current status of the resource.
func (c *Controller) syncHandler(key string) error {
// Convert the namespace/name string into a distinct namespace and name
fmt.Printf("Inside syncHandler...key:%s\n", key)
namespace, name, err := cache.SplitMetaNamespaceKey(key)
fmt.Printf("Inside syncHandler...Namespace:%s Name:%s\n", namespace, name)
if err != nil {
runtime.HandleError(fmt.Errorf("invalid resource key: %s", key))
return nil
}
if namespace == "" {
namespace = "default"
}
// Get the Foo resource with this namespace/name
foo, err := c.platformStacksLister.ResourceCompositions(namespace).Get(name)
if err != nil {
// The Foo resource may no longer exist, in which case we stop
// processing.
if errors.IsNotFound(err) {
runtime.HandleError(fmt.Errorf("platformStack '%s' in work queue no longer exists", key))
return nil
}
return err
}
fmt.Printf("ABC\n")
fmt.Printf("%v\n", foo.Spec)
newRes := foo.Spec.NewResource
fmt.Printf("DEF\n")
fmt.Printf("%v\n", newRes)
res := newRes.Resource
fmt.Printf("GHI\n")
fmt.Printf("%v\n", res)
kind := foo.Spec.NewResource.Resource.Kind
group := foo.Spec.NewResource.Resource.Group
version := foo.Spec.NewResource.Resource.Version
plural := foo.Spec.NewResource.Resource.Plural
chartURL := foo.Spec.NewResource.ChartURL
chartName := foo.Spec.NewResource.ChartName
fmt.Printf("Kind:%s, Version:%s Group:%s, Plural:%s\n", kind, version, group, plural)
fmt.Printf("ChartURL:%s, ChartName:%s\n", chartURL, chartName)
// Check if CRD is present or not. Create it only if it is not present.
action := "create"
handleCRD(kind, version, group, plural, action, namespace)
resPolicySpec := foo.Spec.ResPolicy
fmt.Printf("ResPolicySpec:%v\n",resPolicySpec)
// Instantiate ResourcePolicy object
createResourcePolicy(resPolicySpec, namespace)
resMonitorSpec := foo.Spec.ResMonitor
fmt.Printf("ResMonitorSpec:%v\n",resMonitorSpec)
// Instantiate ResourceMonitor object
createResourceMonitor(resMonitorSpec, namespace)
c.recorder.Event(foo, corev1.EventTypeNormal, SuccessSynced, MessageResourceSynced)
return nil
}
func createResourceMonitor(resMonitorSpec interface{}, namespace string) {
fmt.Println("Inside createResourceMonitor")
resMonitorObject := resMonitorSpec.(platformworkflowv1alpha1.ResourceMonitor)
//resPolicySpecMap := resPolicySpec.(map[string]interface{})
// Using Typed client
config, err := rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
var sampleclientset clientset.Interface
sampleclientset = clientset.NewForConfigOrDie(config)
resMonitor, err := sampleclientset.WorkflowsV1alpha1().ResourceMonitors(namespace).Create(&resMonitorObject)
fmt.Printf("ResourceMonitor:%v\n", resMonitor)
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
}
func deleteResourceMonitor(resMonitorSpec interface{}, namespace string) {
fmt.Println("Inside deleteResourceMonitor")
resMonitorObject := resMonitorSpec.(platformworkflowv1alpha1.ResourceMonitor)
inputResMonitorName := resMonitorObject.ObjectMeta.Name
/*namespace := resMonitorObject.ObjectMeta.Namespace
if namespace == "" {
namespace = "default"
}*/
fmt.Printf("ResMonitor:%s, Namespace:%s\n",inputResMonitorName,namespace)
// Using Typed client
config, err := rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
var sampleclientset clientset.Interface
sampleclientset = clientset.NewForConfigOrDie(config)
resMonList, err := sampleclientset.WorkflowsV1alpha1().ResourceMonitors(namespace).List(metav1.ListOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
for _, resMon := range resMonList.Items {
resMonName := resMon.ObjectMeta.Name
if resMonName == inputResMonitorName {
fmt.Printf("Deleting ResMonitor %s\n", resMonName)
err := sampleclientset.WorkflowsV1alpha1().ResourceMonitors(namespace).Delete(resMonName, &metav1.DeleteOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
}
}
}
func createResourcePolicy(resPolicySpec interface{}, namespace string) {
fmt.Println("Inside createResourcePolicy")
resPolicyObject := resPolicySpec.(platformworkflowv1alpha1.ResourcePolicy)
//resPolicySpecMap := resPolicySpec.(map[string]interface{})
// Using Typed client
config, err := rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
var sampleclientset clientset.Interface
sampleclientset = clientset.NewForConfigOrDie(config)
resPolicy, err := sampleclientset.WorkflowsV1alpha1().ResourcePolicies(namespace).Create(&resPolicyObject)
fmt.Printf("ResourcePolicy:%v\n", resPolicy)
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
}
func deleteResourcePolicy(resPolicySpec interface{}, namespace string) {
fmt.Println("Inside deleteResourcePolicy.")
resPolicyObject := resPolicySpec.(platformworkflowv1alpha1.ResourcePolicy)
inputResPolicyName := resPolicyObject.ObjectMeta.Name
/*namespace := resPolicyObject.ObjectMeta.Namespace
if namespace == "" {
namespace = "default"
}*/
fmt.Printf("ResPolicy:%s, Namespace:%s\n",inputResPolicyName,namespace)
// Using Typed client
config, err := rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
var sampleclientset clientset.Interface
sampleclientset = clientset.NewForConfigOrDie(config)
resPolicyList, err := sampleclientset.WorkflowsV1alpha1().ResourcePolicies(namespace).List(metav1.ListOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
for _, resPolicy := range resPolicyList.Items {
resPolicyName := resPolicy.ObjectMeta.Name
if inputResPolicyName == resPolicyName {
fmt.Printf("Deleting ResPolicy object %s\n", resPolicyName)
err := sampleclientset.WorkflowsV1alpha1().ResourcePolicies(namespace).Delete(resPolicyName, &metav1.DeleteOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
}
}
}
}
func handleCRD(kind, version, group, plural, action, namespace string) error {
fmt.Printf("Inside handleCRD %s\n", action)
cfg, err := rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
crdClient, _ := apiextensionsclientset.NewForConfig(cfg)
kubePlusAnnotation := make(map[string]string)
kubePlusAnnotation[CREATED_BY_KEY] = CREATED_BY_VALUE
crd := &apiextensionsv1beta1.CustomResourceDefinition{
ObjectMeta: metav1.ObjectMeta{
Name: plural + "." + group,
Annotations: kubePlusAnnotation,
},
Spec: apiextensionsv1beta1.CustomResourceDefinitionSpec{
Group: group,
Version: version,
Names: apiextensionsv1beta1.CustomResourceDefinitionNames{
Plural: plural,
Kind: kind,
},
},
}
crdPresent := false
crdList, err := crdClient.CustomResourceDefinitions().List(metav1.ListOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
return err
}
crdToHandle := ""
for _, crd := range crdList.Items {
crdToHandle = crd.ObjectMeta.Name
crdObj, err := crdClient.CustomResourceDefinitions().Get(crdToHandle, metav1.GetOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
return err
}
group1 := crdObj.Spec.Group
version1 := crdObj.Spec.Version
//endpoint := "apis/" + group + "/" + version
kind1 := crdObj.Spec.Names.Kind
plural1 := crdObj.Spec.Names.Plural
//fmt.Printf("Kind:%s, Group:%s, Version:%s, Endpoint:%s, Plural:%s\n",kind1, group1, version1, endpoint, plural1)
if group == group1 && kind == kind1 && version == version1 && plural == plural1 {
crdPresent = true
break
}
}
if !crdPresent {
if action == "create" {
_, err1 := crdClient.CustomResourceDefinitions().Create(crd)
if err1 != nil {
panic(err1.Error())
}
}
} else {
fmt.Printf("CRD Group:%s Version:%s Kind:%s Plural:%s found.\n", group, version, kind, plural)
if action == "delete" {
deleteCRDInstances(kind, group, version, plural, namespace)
err := crdClient.CustomResourceDefinitions().Delete(crdToHandle, &metav1.DeleteOptions{})
if err != nil {
fmt.Errorf("Error:%s\n", err)
return err
} else {
fmt.Printf("CRD deleted successfully.\n")
}
}
}
return nil
}
func deleteCRDInstances(kind, group, version, plural, namespace string) []byte {
fmt.Printf("Inside deleteCRDInstances...\n")
args := fmt.Sprintf("kind=%s&group=%s&version=%s&plural=%s&namespace=%s", kind, group, version, plural, namespace)
//serviceHost, servicePort := getServiceEndpoint("kubeplus")
//fmt.Printf("After getServiceEndpoint...\n")
var url1 string
url1 = fmt.Sprintf("http://%s:%s/apis/kubeplus/deletecrdinstances?%s", HELMER_HOST, HELMER_PORT, args)
fmt.Printf("Url:%s\n", url1)
body := queryKubeDiscoveryService(url1)
return body
}
func getServiceEndpoint(servicename string) (string, string) {
fmt.Printf("..Inside getServiceEndpoint...\n")
namespace := getKubePlusNamespace() // Use the namespace in which kubeplus is deployed.
//discoveryService := "discovery-service"
cfg, _ := rest.InClusterConfig()
kubeClient, _ := kubernetes.NewForConfig(cfg)
serviceClient := kubeClient.CoreV1().Services(namespace)
discoveryServiceObj, _ := serviceClient.Get(servicename, metav1.GetOptions{})
host := discoveryServiceObj.Spec.ClusterIP
port := discoveryServiceObj.Spec.Ports[0].Port
stringPort := strconv.Itoa(int(port))
fmt.Printf("Host:%s, Port:%s\n", host, stringPort)
return host, stringPort
}
func getKubePlusNamespace() string {
filePath := "/var/run/secrets/kubernetes.io/serviceaccount/namespace"
content, err := ioutil.ReadFile(filePath)
if err != nil {
fmt.Printf("Namespace file reading error:%v\n", err)
}
ns := string(content)
ns = strings.TrimSpace(ns)
//fmt.Printf("CRD Hook NS:%s\n", ns)
return ns
}
func queryKubeDiscoveryService(url1 string) []byte {
fmt.Printf("..inside queryKubeDiscoveryService")
u, err := url.Parse(url1)
if err != nil {
panic(err)
}
req, err := http.NewRequest(http.MethodGet, u.String(), nil)
if err != nil {
fmt.Println(err)
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Printf("sending request failed: %s", err.Error())
fmt.Println(err)
}
defer resp.Body.Close()
resp_body, _ := ioutil.ReadAll(resp.Body)
//fmt.Println(resp.Status)
//fmt.Println(string(resp_body))
//fmt.Println("Exiting QueryCompositionEndpoint")
return resp_body
}
func int32Ptr(i int32) *int32 { return &i }