-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathforge.go
More file actions
1487 lines (1388 loc) · 51.7 KB
/
forge.go
File metadata and controls
1487 lines (1388 loc) · 51.7 KB
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2022-2025 FLUIDOS Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package resourceforge
import (
"bytes"
"context"
"encoding/json"
"fmt"
"html/template"
"strings"
"time"
"github.com/Masterminds/sprig"
offloadingv1beta1 "github.com/liqotech/liqo/apis/offloading/v1beta1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/klog/v2"
"sigs.k8s.io/controller-runtime/pkg/client"
advertisementv1alpha1 "github.com/fluidos-project/node/apis/advertisement/v1alpha1"
networkv1alpha1 "github.com/fluidos-project/node/apis/network/v1alpha1"
nodecorev1alpha1 "github.com/fluidos-project/node/apis/nodecore/v1alpha1"
reservationv1alpha1 "github.com/fluidos-project/node/apis/reservation/v1alpha1"
"github.com/fluidos-project/node/pkg/utils/consts"
"github.com/fluidos-project/node/pkg/utils/flags"
"github.com/fluidos-project/node/pkg/utils/getters"
"github.com/fluidos-project/node/pkg/utils/models"
"github.com/fluidos-project/node/pkg/utils/namings"
"github.com/fluidos-project/node/pkg/utils/parseutil"
"github.com/fluidos-project/node/pkg/utils/tools"
)
// ForgeDiscovery creates a Discovery CR from a FlavorSelector and a solverID.
func ForgeDiscovery(selector *nodecorev1alpha1.Selector, solverID string) *advertisementv1alpha1.Discovery {
return &advertisementv1alpha1.Discovery{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeDiscoveryName(solverID),
Namespace: flags.FluidosNamespace,
},
Spec: advertisementv1alpha1.DiscoverySpec{
Selector: func() *nodecorev1alpha1.Selector {
if selector != nil {
return selector
}
return nil
}(),
SolverID: solverID,
Subscribe: false,
},
}
}
// ForgePeeringCandidate creates a PeeringCandidate CR from a Flavor and a Discovery.
func ForgePeeringCandidate(flavorPeeringCandidate *nodecorev1alpha1.Flavor,
solverID string, available bool) (pc *advertisementv1alpha1.PeeringCandidate) {
pc = &advertisementv1alpha1.PeeringCandidate{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgePeeringCandidateName(flavorPeeringCandidate.Name),
Namespace: flags.FluidosNamespace,
},
Spec: advertisementv1alpha1.PeeringCandidateSpec{
Flavor: nodecorev1alpha1.Flavor{
ObjectMeta: metav1.ObjectMeta{
Name: flavorPeeringCandidate.Name,
Namespace: flavorPeeringCandidate.Namespace,
},
Spec: flavorPeeringCandidate.Spec,
},
Available: available,
},
}
pc.Spec.InterestedSolverIDs = append(pc.Spec.InterestedSolverIDs, solverID)
return
}
// ForgeReservation creates a Reservation CR from a PeeringCandidate.
func ForgeReservation(pc *advertisementv1alpha1.PeeringCandidate,
configuration *nodecorev1alpha1.Configuration,
ni nodecorev1alpha1.NodeIdentity,
reservingSolver string) *reservationv1alpha1.Reservation {
solverID := reservingSolver
reservation := &reservationv1alpha1.Reservation{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeReservationName(solverID),
Namespace: flags.FluidosNamespace,
},
Spec: reservationv1alpha1.ReservationSpec{
SolverID: solverID,
Buyer: ni,
Seller: nodecorev1alpha1.NodeIdentity{
Domain: pc.Spec.Flavor.Spec.Owner.Domain,
NodeID: pc.Spec.Flavor.Spec.Owner.NodeID,
IP: pc.Spec.Flavor.Spec.Owner.IP,
},
PeeringCandidate: nodecorev1alpha1.GenericRef{
Name: pc.Name,
Namespace: pc.Namespace,
},
Reserve: true,
Purchase: true,
Configuration: func() *nodecorev1alpha1.Configuration {
if configuration != nil {
return configuration
}
return nil
}(),
},
}
if configuration != nil {
reservation.Spec.Configuration = configuration
}
return reservation
}
// ForgeTelemetryServer creates a TelemetryServer CR from a TelemetryServer model.
func ForgeTelemetryServer(telemetryServer *models.TelemetryServer) *reservationv1alpha1.TelemetryServer {
if telemetryServer == nil {
return nil
}
return &reservationv1alpha1.TelemetryServer{
Endpoint: telemetryServer.Endpoint,
Intents: telemetryServer.Intents,
}
}
// ForgeContract creates a Contract CR.
func ForgeContract(
flavor *nodecorev1alpha1.Flavor,
transaction *models.Transaction,
peeringTargetLiqoCredentials *nodecorev1alpha1.LiqoCredentials,
sellerLiqoID string,
ingressTelemetryEndpoint *models.TelemetryServer) *reservationv1alpha1.Contract {
return &reservationv1alpha1.Contract{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeContractName(flavor.Name),
Namespace: flags.FluidosNamespace,
},
Spec: reservationv1alpha1.ContractSpec{
Flavor: *flavor,
Buyer: nodecorev1alpha1.NodeIdentity{
Domain: transaction.Buyer.Domain,
IP: transaction.Buyer.IP,
NodeID: transaction.Buyer.NodeID,
AdditionalInformation: &nodecorev1alpha1.NodeIdentityAdditionalInfo{
LiqoID: transaction.ClusterID,
},
},
BuyerClusterID: transaction.ClusterID,
Seller: func() nodecorev1alpha1.NodeIdentity {
return nodecorev1alpha1.NodeIdentity{
Domain: flavor.Spec.Owner.Domain,
NodeID: flavor.Spec.Owner.NodeID,
IP: flavor.Spec.Owner.IP,
AdditionalInformation: &nodecorev1alpha1.NodeIdentityAdditionalInfo{
LiqoID: sellerLiqoID,
},
}
}(),
PeeringTargetCredentials: *peeringTargetLiqoCredentials,
TransactionID: transaction.TransactionID,
Configuration: func() *nodecorev1alpha1.Configuration {
if transaction.Configuration != nil {
configuration, err := ForgeConfigurationFromObj(*transaction.Configuration)
if err != nil {
klog.Errorf("Error when parsing configuration: %s", err)
return nil
}
return configuration
}
return nil
}(),
ExpirationTime: time.Now().Add(flags.ExpirationContract).Format(time.RFC3339),
ExtraInformation: nil,
// TODO: Add logic to network requests
NetworkRequests: "",
IngressTelemetryEndpoint: ForgeTelemetryServer(ingressTelemetryEndpoint),
},
Status: reservationv1alpha1.ContractStatus{
Phase: nodecorev1alpha1.PhaseStatus{
Phase: nodecorev1alpha1.PhaseActive,
StartTime: tools.GetTimeNow(),
},
},
}
}
// ForgeK8SliceFlavorFromMetrics creates a new flavor custom resource from the metrics of the node.
func ForgeK8SliceFlavorFromMetrics(node *models.NodeInfo, ni nodecorev1alpha1.NodeIdentity,
ownerReferences []metav1.OwnerReference) (flavor *nodecorev1alpha1.Flavor) {
k8SliceType := nodecorev1alpha1.K8Slice{
Characteristics: nodecorev1alpha1.K8SliceCharacteristics{
Architecture: node.Architecture,
CPU: node.ResourceMetrics.CPUAvailable,
Memory: node.ResourceMetrics.MemoryAvailable,
Pods: node.ResourceMetrics.PodsAvailable,
Storage: &node.ResourceMetrics.EphemeralStorage,
Gpu: &nodecorev1alpha1.GPU{
Model: node.ResourceMetrics.GPU.Model,
Cores: node.ResourceMetrics.GPU.CoresAvailable,
Memory: node.ResourceMetrics.GPU.MemoryAvailable,
},
},
Properties: nodecorev1alpha1.Properties{},
Policies: nodecorev1alpha1.Policies{
Partitionability: nodecorev1alpha1.Partitionability{
CPUMin: parseutil.ParseQuantityFromString(flags.CPUMin),
MemoryMin: parseutil.ParseQuantityFromString(flags.MemoryMin),
PodsMin: parseutil.ParseQuantityFromString(flags.PodsMin),
CPUStep: parseutil.ParseQuantityFromString(flags.CPUStep),
MemoryStep: parseutil.ParseQuantityFromString(flags.MemoryStep),
PodsStep: parseutil.ParseQuantityFromString(flags.PodsStep),
},
},
}
// Serialize K8SliceType to JSON
k8SliceTypeJSON, err := json.Marshal(k8SliceType)
if err != nil {
klog.Errorf("Error when marshaling K8SliceType: %s", err)
return nil
}
return &nodecorev1alpha1.Flavor{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeFlavorName(string(nodecorev1alpha1.TypeK8Slice), ni.Domain),
Namespace: flags.FluidosNamespace,
OwnerReferences: ownerReferences,
},
Spec: nodecorev1alpha1.FlavorSpec{
ProviderID: ni.NodeID,
FlavorType: nodecorev1alpha1.FlavorType{
TypeIdentifier: nodecorev1alpha1.TypeK8Slice,
TypeData: runtime.RawExtension{Raw: k8SliceTypeJSON},
},
Owner: ni,
Price: nodecorev1alpha1.Price{
Amount: flags.AMOUNT,
Currency: flags.CURRENCY,
Period: flags.PERIOD,
},
Availability: true,
// FIXME: NetworkPropertyType should be taken in a smarter way
NetworkPropertyType: "networkProperty",
// FIXME: Location should be taken in a smarter way
Location: &nodecorev1alpha1.Location{
Latitude: "10",
Longitude: "58",
Country: "Italy",
City: "Turin",
AdditionalNotes: "None",
},
},
}
}
// ForgeServiceFlavorFromBlueprint creates a new flavor custom resource from a ServiceBlueprint.
func ForgeServiceFlavorFromBlueprint(serviceBlueprint *nodecorev1alpha1.ServiceBlueprint, ni *nodecorev1alpha1.NodeIdentity,
ownerReferences []metav1.OwnerReference) (flavor *nodecorev1alpha1.Flavor) {
configurationTemplate, err := forgeServiceConfigurationTemplateFromCategory(models.MapToServiceCategory(serviceBlueprint.Spec.Category))
if err != nil {
klog.Errorf("Error when forging configuration template: %s", err)
return nil
}
serviceFlavor := &nodecorev1alpha1.ServiceFlavor{
Name: serviceBlueprint.Spec.Name,
Description: serviceBlueprint.Spec.Description,
Category: serviceBlueprint.Spec.Category,
Tags: serviceBlueprint.Spec.Tags,
HostingPolicies: serviceBlueprint.Spec.HostingPolicies,
ConfigurationTemplate: runtime.RawExtension{Raw: []byte(configurationTemplate)},
}
serviceFlavorJSON, err := json.Marshal(serviceFlavor)
if err != nil {
klog.Errorf("Error when marshaling service flavor: %s", err)
return nil
}
return &nodecorev1alpha1.Flavor{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeFlavorName(string(nodecorev1alpha1.TypeService), ni.Domain),
Namespace: flags.FluidosNamespace,
OwnerReferences: ownerReferences,
},
Spec: nodecorev1alpha1.FlavorSpec{
ProviderID: ni.NodeID,
FlavorType: nodecorev1alpha1.FlavorType{
TypeIdentifier: nodecorev1alpha1.TypeService,
TypeData: runtime.RawExtension{Raw: serviceFlavorJSON},
},
Owner: *ni,
Price: nodecorev1alpha1.Price{
Amount: flags.AMOUNT,
Currency: flags.CURRENCY,
Period: flags.PERIOD,
},
Availability: true,
// FIXME: NetworkPropertyType should be taken in a smarter way
NetworkPropertyType: "networkProperty",
// FIXME: Location should be taken in a smarter way
Location: &nodecorev1alpha1.Location{
Latitude: "10",
Longitude: "58",
Country: "Italy",
City: "Turin",
AdditionalNotes: "None",
},
},
}
}
// forgeServiceConfigurationTemplateFromCategory creates a JSON schema for the configuration template of a service.
func forgeServiceConfigurationTemplateFromCategory(category consts.ServiceCategory) (configurationTemplate string, err error) {
var JSONtemplate string
switch category {
case consts.Database:
JSONtemplate = `{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"database": {
"type": "string"
}
},
"required": ["username", "password", "database"]
}`
case consts.MessageQueue:
JSONtemplate = `{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": ["username", "password"]
}`
// TODO (Service): Implement more categories based on ontology
default:
klog.Errorf("Category not recognized")
return "", fmt.Errorf("category not recognized")
}
return JSONtemplate, nil
}
// forgeServiceConfigurationDefaultFromCategory creates a default configuration for a service based on the category.
func forgeServiceConfigurationDefaultFromCategory(category consts.ServiceCategory) (configuration string, err error) {
var JSONtemplate string
switch category {
case consts.Database:
JSONtemplate = `{
"username": "admin",
"password": "admin",
"database": "mydb"
}`
case consts.MessageQueue:
JSONtemplate = `{
"username": "admin",
"password": "adminpassword"
}`
// TODO (Service): Implement more categories based on ontology
default:
klog.Errorf("Category not recognized")
return "", fmt.Errorf("category not recognized")
}
return JSONtemplate, nil
}
// ForgeFlavorFromRef creates a new flavor starting from a Reference Flavor and the new Characteristics.
func ForgeFlavorFromRef(f *nodecorev1alpha1.Flavor, newFlavorType *nodecorev1alpha1.FlavorType) (flavor *nodecorev1alpha1.Flavor) {
return &nodecorev1alpha1.Flavor{
ObjectMeta: metav1.ObjectMeta{
Name: namings.ForgeFlavorName(string(f.Spec.FlavorType.TypeIdentifier), f.Spec.Owner.Domain),
Namespace: flags.FluidosNamespace,
OwnerReferences: f.GetOwnerReferences(),
},
Spec: nodecorev1alpha1.FlavorSpec{
ProviderID: f.Spec.ProviderID,
FlavorType: *newFlavorType,
Owner: f.Spec.Owner,
Price: f.Spec.Price,
Availability: true,
NetworkPropertyType: f.Spec.NetworkPropertyType,
Location: f.Spec.Location,
},
}
}
// FORGER FUNCTIONS FROM OBJECTS
// ForgeTransactionObj creates a new Transaction object.
func ForgeTransactionObj(id string, req *models.ReserveRequest) *models.Transaction {
return &models.Transaction{
TransactionID: id,
Buyer: req.Buyer,
ClusterID: req.Buyer.AdditionalInformation.LiqoID,
FlavorID: req.FlavorID,
Configuration: func() *models.Configuration {
if req.Configuration != nil {
return req.Configuration
}
return nil
}(),
ExpirationTime: tools.GetExpirationTime(1, 0, 0),
}
}
// ForgeContractObj creates a new Contract object.
func ForgeContractObj(contract *reservationv1alpha1.Contract) models.Contract {
return models.Contract{
ContractID: contract.Name,
Flavor: *parseutil.ParseFlavor(&contract.Spec.Flavor),
Buyer: parseutil.ParseNodeIdentity(contract.Spec.Buyer),
BuyerClusterID: contract.Spec.BuyerClusterID,
Seller: parseutil.ParseNodeIdentity(contract.Spec.Seller),
PeeringTargetCredentials: models.LiqoCredentials{
ClusterID: contract.Spec.PeeringTargetCredentials.ClusterID,
Kubeconfig: contract.Spec.PeeringTargetCredentials.Kubeconfig,
},
Configuration: func() *models.Configuration {
if contract.Spec.Configuration != nil {
configuration, err := parseutil.ParseConfiguration(contract.Spec.Configuration, &contract.Spec.Flavor)
if err != nil {
klog.Errorf("Error when parsing configuration: %s", err)
return nil
}
return configuration
}
return nil
}(),
TransactionID: contract.Spec.TransactionID,
ExpirationTime: contract.Spec.ExpirationTime,
ExtraInformation: func() map[string]string {
if contract.Spec.ExtraInformation != nil {
return contract.Spec.ExtraInformation
}
return nil
}(),
}
}
// ForgeNodeIdentitiesFromObj creates a NodeIdentity CR from a NodeIdentity Object.
func ForgeNodeIdentitiesFromObj(nodeIdentity *models.NodeIdentity) *nodecorev1alpha1.NodeIdentity {
return &nodecorev1alpha1.NodeIdentity{
NodeID: nodeIdentity.NodeID,
IP: nodeIdentity.IP,
Domain: nodeIdentity.Domain,
AdditionalInformation: func() *nodecorev1alpha1.NodeIdentityAdditionalInfo {
if nodeIdentity.AdditionalInformation != nil {
return &nodecorev1alpha1.NodeIdentityAdditionalInfo{
LiqoID: nodeIdentity.AdditionalInformation.LiqoID,
}
}
return nil
}(),
}
}
// ForgeContractFromObj creates a Contract from a reservation.
func ForgeContractFromObj(contract *models.Contract) (*reservationv1alpha1.Contract, error) {
// Forge flavorCR
flavorCR, err := ForgeFlavorFromObj(&contract.Flavor)
if err != nil {
return nil, err
}
return &reservationv1alpha1.Contract{
ObjectMeta: metav1.ObjectMeta{
Name: contract.ContractID,
Namespace: flags.FluidosNamespace,
},
Spec: reservationv1alpha1.ContractSpec{
Flavor: *flavorCR,
Buyer: *ForgeNodeIdentitiesFromObj(&contract.Buyer),
BuyerClusterID: contract.BuyerClusterID,
Seller: *ForgeNodeIdentitiesFromObj(&contract.Seller),
PeeringTargetCredentials: nodecorev1alpha1.LiqoCredentials{
ClusterID: contract.PeeringTargetCredentials.ClusterID,
Kubeconfig: contract.PeeringTargetCredentials.Kubeconfig,
},
TransactionID: contract.TransactionID,
Configuration: func() *nodecorev1alpha1.Configuration {
if contract.Configuration != nil {
configuration, err := ForgeConfigurationFromObj(*contract.Configuration)
if err != nil {
klog.Errorf("Error when parsing configuration: %s", err)
return nil
}
return configuration
}
return nil
}(),
ExpirationTime: contract.ExpirationTime,
ExtraInformation: func() map[string]string {
if contract.ExtraInformation != nil {
return contract.ExtraInformation
}
return nil
}(),
NetworkRequests: contract.NetworkRequests,
IngressTelemetryEndpoint: ForgeTelemetryServer(contract.IngressTelemetryEndpoint),
},
Status: reservationv1alpha1.ContractStatus{
Phase: nodecorev1alpha1.PhaseStatus{
Phase: nodecorev1alpha1.PhaseActive,
StartTime: tools.GetTimeNow(),
},
},
}, nil
}
// ForgeTransactionFromObj creates a transaction from a Transaction object.
func ForgeTransactionFromObj(transaction *models.Transaction) *reservationv1alpha1.Transaction {
return &reservationv1alpha1.Transaction{
ObjectMeta: metav1.ObjectMeta{
Name: transaction.TransactionID,
Namespace: flags.FluidosNamespace,
},
Spec: reservationv1alpha1.TransactionSpec{
FlavorID: transaction.FlavorID,
ExpirationTime: transaction.ExpirationTime,
Buyer: nodecorev1alpha1.NodeIdentity{
Domain: transaction.Buyer.Domain,
IP: transaction.Buyer.IP,
NodeID: transaction.Buyer.NodeID,
AdditionalInformation: func() *nodecorev1alpha1.NodeIdentityAdditionalInfo {
if transaction.Buyer.AdditionalInformation != nil {
return &nodecorev1alpha1.NodeIdentityAdditionalInfo{
LiqoID: transaction.Buyer.AdditionalInformation.LiqoID,
}
}
return nil
}(),
},
Configuration: func() *nodecorev1alpha1.Configuration {
if transaction.Configuration != nil {
configuration, err := ForgeConfigurationFromObj(*transaction.Configuration)
if err != nil {
klog.Errorf("Error when parsing configuration: %s", err)
return nil
}
return configuration
}
return nil
}(),
},
}
}
// ForgeConfigurationFromObj creates a Configuration CR from a Configuration object.
func ForgeConfigurationFromObj(configuration models.Configuration) (*nodecorev1alpha1.Configuration, error) {
// Parse the Configuration
switch configuration.Type {
case models.K8SliceNameDefault:
// Force casting of configurationStruct to K8Slice
var configurationStruct models.K8SliceConfiguration
err := json.Unmarshal(configuration.Data, &configurationStruct)
if err != nil {
return nil, err
}
k8SliceConfiguration := &nodecorev1alpha1.K8SliceConfiguration{
CPU: configurationStruct.CPU,
Memory: configurationStruct.Memory,
Pods: configurationStruct.Pods,
Gpu: func() *nodecorev1alpha1.GPU {
if configurationStruct.Gpu != nil {
return &nodecorev1alpha1.GPU{
Model: configurationStruct.Gpu.Model,
Cores: configurationStruct.Gpu.Cores,
Memory: configurationStruct.Gpu.Memory,
}
}
return nil
}(),
Storage: configurationStruct.Storage,
}
// Marshal the K8Slice configuration to JSON
configurationData, err := json.Marshal(k8SliceConfiguration)
if err != nil {
return nil, err
}
return &nodecorev1alpha1.Configuration{
ConfigurationTypeIdentifier: nodecorev1alpha1.TypeK8Slice,
ConfigurationData: runtime.RawExtension{Raw: configurationData},
}, nil
case models.VMNameDefault:
// TODO (VM): Implement VM configuration
return nil, fmt.Errorf("vm configuration not implemented")
case models.ServiceNameDefault:
// Force casting of configurationStruct to Service
var configurationStruct models.ServiceConfiguration
err := json.Unmarshal(configuration.Data, &configurationStruct)
if err != nil {
return nil, err
}
// Create ServiceConfiguration nodecorev1alpha1
serviceConfigurationCR := nodecorev1alpha1.ServiceConfiguration{
HostingPolicy: func() *nodecorev1alpha1.HostingPolicy {
if configurationStruct.HostingPolicy != nil {
hp := models.MapFromModelHostingPolicy(*configurationStruct.HostingPolicy)
return &hp
}
return nil
}(),
ConfigurationData: runtime.RawExtension{
Raw: configurationStruct.ConfigurationData,
},
}
// Marshal ServiceConfiguration to JSON
configurationData, err := json.Marshal(serviceConfigurationCR)
if err != nil {
return nil, err
}
return &nodecorev1alpha1.Configuration{
ConfigurationTypeIdentifier: nodecorev1alpha1.TypeService,
ConfigurationData: runtime.RawExtension{Raw: configurationData},
}, nil
case models.SensorNameDefault:
// TODO (Sensor): Implement Sensor configuration
return nil, fmt.Errorf("sensor configuration not implemented")
default:
return nil, fmt.Errorf("unknown configuration type")
}
}
// ForgeConfigurationObj creates a Configuration object from a Configuration CR.
func ForgeConfigurationObj(configuration *nodecorev1alpha1.Configuration) (*models.Configuration, error) {
var data json.RawMessage
switch configuration.ConfigurationTypeIdentifier {
case nodecorev1alpha1.TypeK8Slice:
// Force casting of configurationStruct to K8Slice
var configurationStruct nodecorev1alpha1.K8SliceConfiguration
err := json.Unmarshal(configuration.ConfigurationData.Raw, &configurationStruct)
if err != nil {
return nil, err
}
k8SliceConfiguration := models.K8SliceConfiguration{
CPU: configurationStruct.CPU,
Memory: configurationStruct.Memory,
Pods: configurationStruct.Pods,
Gpu: func() *models.GpuCharacteristics {
if configurationStruct.Gpu != nil {
return &models.GpuCharacteristics{
Model: configurationStruct.Gpu.Model,
Cores: configurationStruct.Gpu.Cores,
Memory: configurationStruct.Gpu.Memory,
}
}
return nil
}(),
Storage: configurationStruct.Storage,
}
// Marshal the K8Slice configuration to JSON
data, err = json.Marshal(k8SliceConfiguration)
if err != nil {
return nil, err
}
case nodecorev1alpha1.TypeService:
// Force casting of configurationStruct to Service
var configurationStruct nodecorev1alpha1.ServiceConfiguration
err := json.Unmarshal(configuration.ConfigurationData.Raw, &configurationStruct)
if err != nil {
return nil, err
}
// Convert ConfigurationData to json.RawMessage
configurationData, err := json.Marshal(configurationStruct.ConfigurationData)
if err != nil {
return nil, err
}
// Create ServiceConfiguration nodecorev1alpha1
serviceConfiguration := models.ServiceConfiguration{
HostingPolicy: func() *models.HostingPolicy {
if configurationStruct.HostingPolicy != nil {
hp := models.MapToModelHostingPolicy(*configurationStruct.HostingPolicy)
return &hp
}
return nil
}(),
ConfigurationData: json.RawMessage(configurationData),
}
// Marshal ServiceConfiguration to JSON
data, err = json.Marshal(serviceConfiguration)
if err != nil {
return nil, err
}
case nodecorev1alpha1.TypeSensor:
// TODO (Sensor): Implement Sensor configuration
return nil, fmt.Errorf("sensor configuration not implemented")
case nodecorev1alpha1.TypeVM:
// TODO (VM): Implement VM configuration
return nil, fmt.Errorf("vm configuration not implemented")
default:
return nil, fmt.Errorf("unknown configuration type")
}
modelConf := models.Configuration{
Type: models.MapToFlavorTypeName(configuration.ConfigurationTypeIdentifier),
Data: data,
}
return &modelConf, nil
}
// ForgeResourceSelectorFromObj creates a ResourceSelector CR from a ResourceSelector Object.
func ForgeResourceSelectorFromObj(resourceSelector *models.ResourceSelector) *nodecorev1alpha1.ResourceSelector {
// Parse ResourceSelector
switch resourceSelector.TypeIdentifier {
case models.CIDRSelectorType:
// unmarshal CIDRSelector
var resourceSelectorStruct models.CIDRSelector
err := json.Unmarshal(resourceSelector.Selector, &resourceSelectorStruct)
if err != nil {
klog.Errorf("Error when unmarshaling CIDRSelector: %s", err)
return nil
}
// Create CIDRSelector nodecorev1alpha1
cidrSelectorCR := nodecorev1alpha1.CIDRSelector(resourceSelectorStruct)
// Marshal CIDRSelector to JSON
resourceSelectorData, err := json.Marshal(cidrSelectorCR)
if err != nil {
klog.Errorf("Error when marshaling CIDRSelector: %s", err)
return nil
}
return &nodecorev1alpha1.ResourceSelector{
TypeIdentifier: nodecorev1alpha1.CIDRSelectorType,
Selector: runtime.RawExtension{Raw: resourceSelectorData},
}
case models.PodNamespaceSelectorType:
// Force casting of resourceSelector to PodNamespaceSelector type
var resourceSelectorStruct models.PodNamespaceSelector
err := json.Unmarshal(resourceSelector.Selector, &resourceSelectorStruct)
if err != nil {
klog.Errorf("Error when unmarshaling PodNamespaceSelector: %s", err)
return nil
}
// Create PodNamespaceSelector nodecorev1alpha1
podNamespaceSelectorCR := nodecorev1alpha1.PodNamespaceSelector{
Pod: resourceSelectorStruct.Pod,
Namespace: resourceSelectorStruct.Namespace,
}
// Marshal PodNamespaceSelector to JSON
resourceSelectorData, err := json.Marshal(podNamespaceSelectorCR)
if err != nil {
klog.Errorf("Error when marshaling PodNamespaceSelector: %s", err)
return nil
}
return &nodecorev1alpha1.ResourceSelector{
TypeIdentifier: nodecorev1alpha1.PodNamespaceSelectorType,
Selector: runtime.RawExtension{Raw: resourceSelectorData},
}
default:
klog.Errorf("Resource selector type not recognized")
return nil
}
}
// ForgeSourceDestinationFromObj creates a SourceDestination CR from a SourceDestination Object.
func ForgeSourceDestinationFromObj(sourceDestination *models.SourceDestination) *nodecorev1alpha1.SourceDestination {
// Parse ResourceSelector
resourceSelector := ForgeResourceSelectorFromObj(&sourceDestination.ResourceSelector)
if resourceSelector == nil {
klog.Errorf("Error when parsing resource selector from source destination")
return nil
}
return &nodecorev1alpha1.SourceDestination{
IsHostCluster: sourceDestination.IsHostCluster,
ResourceSelector: *resourceSelector,
}
}
// ForgeNetworkIntentFromObj creates a NetworkIntent CR from a NetworkIntent Object.
func ForgeNetworkIntentFromObj(networkIntent *models.NetworkIntent) *nodecorev1alpha1.NetworkIntent {
// Parse NetworkIntent
source := ForgeSourceDestinationFromObj(&networkIntent.Source)
if source == nil {
klog.Errorf("Error when parsing source from network intent")
return nil
}
destination := ForgeSourceDestinationFromObj(&networkIntent.Destination)
if destination == nil {
klog.Errorf("Error when parsing destination from network intent")
return nil
}
return &nodecorev1alpha1.NetworkIntent{
Name: networkIntent.Name,
Source: *source,
Destination: *destination,
DestinationPort: networkIntent.DestinationPort,
ProtocolType: networkIntent.ProtocolType,
}
}
// ForgeNetworkAuthorizationsFromObj creates a NetworkAuthorizations CR from a NetworkAuthorizations Object.
func ForgeNetworkAuthorizationsFromObj(networkAuthorizations *models.NetworkAuthorizations) *nodecorev1alpha1.NetworkAuthorizations {
// DeniedCommunications
var deniedCommunicationsModel []nodecorev1alpha1.NetworkIntent
var mandatoryCommunicationsModel []nodecorev1alpha1.NetworkIntent
for i := range networkAuthorizations.DeniedCommunications {
deniedCommunication := networkAuthorizations.DeniedCommunications[i]
// Parse the DeniedCommunication
ni := ForgeNetworkIntentFromObj(&deniedCommunication)
if ni == nil {
klog.Errorf("Error when parsing denied communication from network authorizations")
} else {
deniedCommunicationsModel = append(deniedCommunicationsModel, *ni)
}
}
// MandatoryCommunications
for i := range networkAuthorizations.MandatoryCommunications {
mandatoryCommunication := networkAuthorizations.MandatoryCommunications[i]
// Parse the MandatoryCommunication
ni := ForgeNetworkIntentFromObj(&mandatoryCommunication)
if ni == nil {
klog.Errorf("Error when parsing mandatory communication from network authorizations")
} else {
mandatoryCommunicationsModel = append(mandatoryCommunicationsModel, *ni)
}
}
return &nodecorev1alpha1.NetworkAuthorizations{
DeniedCommunications: deniedCommunicationsModel,
MandatoryCommunications: mandatoryCommunicationsModel,
}
}
// ForgeFlavorFromObj creates a Flavor CR from a Flavor Object (REAR).
func ForgeFlavorFromObj(flavor *models.Flavor) (*nodecorev1alpha1.Flavor, error) {
var flavorType nodecorev1alpha1.FlavorType
switch flavor.Type.Name {
case models.K8SliceNameDefault:
// Unmarshal K8SliceType
var flavorTypeDataModel models.K8Slice
err := json.Unmarshal(flavor.Type.Data, &flavorTypeDataModel)
if err != nil {
klog.Errorf("Error when unmarshalling K8SliceType: %s", err)
return nil, err
}
flavorTypeData := nodecorev1alpha1.K8Slice{
Characteristics: nodecorev1alpha1.K8SliceCharacteristics{
Architecture: flavorTypeDataModel.Characteristics.Architecture,
CPU: flavorTypeDataModel.Characteristics.CPU,
Memory: flavorTypeDataModel.Characteristics.Memory,
Pods: flavorTypeDataModel.Characteristics.Pods,
Storage: flavorTypeDataModel.Characteristics.Storage,
Gpu: func() *nodecorev1alpha1.GPU {
if flavorTypeDataModel.Characteristics.Gpu != nil {
return &nodecorev1alpha1.GPU{
Model: flavorTypeDataModel.Characteristics.Gpu.Model,
Cores: flavorTypeDataModel.Characteristics.Gpu.Cores,
Memory: flavorTypeDataModel.Characteristics.Gpu.Memory,
}
}
return nil
}(),
},
Properties: nodecorev1alpha1.Properties{
Latency: flavorTypeDataModel.Properties.Latency,
SecurityStandards: flavorTypeDataModel.Properties.SecurityStandards,
CarbonFootprint: func() *nodecorev1alpha1.CarbonFootprint {
if flavorTypeDataModel.Properties.CarbonFootprint != nil {
return &nodecorev1alpha1.CarbonFootprint{
Embodied: flavorTypeDataModel.Properties.CarbonFootprint.Embodied,
Operational: flavorTypeDataModel.Properties.CarbonFootprint.Operational,
}
}
return nil
}(),
NetworkAuthorizations: func() *nodecorev1alpha1.NetworkAuthorizations {
if flavorTypeDataModel.Properties.NetworkAuthorizations != nil {
return ForgeNetworkAuthorizationsFromObj(flavorTypeDataModel.Properties.NetworkAuthorizations)
}
return nil
}(),
},
Policies: nodecorev1alpha1.Policies{
Partitionability: nodecorev1alpha1.Partitionability{
CPUMin: flavorTypeDataModel.Policies.Partitionability.CPUMin,
MemoryMin: flavorTypeDataModel.Policies.Partitionability.MemoryMin,
PodsMin: flavorTypeDataModel.Policies.Partitionability.PodsMin,
CPUStep: flavorTypeDataModel.Policies.Partitionability.CPUStep,
MemoryStep: flavorTypeDataModel.Policies.Partitionability.MemoryStep,
PodsStep: flavorTypeDataModel.Policies.Partitionability.PodsStep,
},
},
}
if err := forgeK8SlicePropertyAdditionalPropertiesFromObj(&flavorTypeDataModel.Properties, &flavorTypeData.Properties); err != nil {
klog.Errorf("Error when forging K8Slice additional properties: %s", err)
return nil, err
}
flavorTypeDataJSON, err := json.Marshal(flavorTypeData)
if err != nil {
klog.Errorf("Error when marshaling K8SliceType: %s", err)
return nil, err
}
flavorType = nodecorev1alpha1.FlavorType{
TypeIdentifier: nodecorev1alpha1.TypeK8Slice,
TypeData: runtime.RawExtension{Raw: flavorTypeDataJSON},
}
case models.VMNameDefault:
// TODO (VM): Implement VM flavor
return nil, fmt.Errorf("VM flavor not implemented")
case models.ServiceNameDefault:
// Unmarshal ServiceFlavorType
var flavorTypeDataModel models.ServiceFlavor
err := json.Unmarshal(flavor.Type.Data, &flavorTypeDataModel)
if err != nil {
klog.Errorf("Error when unmarshalling ServiceType: %s", err)
return nil, err
}
flavorTypeData := nodecorev1alpha1.ServiceFlavor{
Name: flavorTypeDataModel.Name,
Description: flavorTypeDataModel.Description,
Category: flavorTypeDataModel.Category,
Tags: flavorTypeDataModel.Tags,
ConfigurationTemplate: runtime.RawExtension{Raw: flavorTypeDataModel.ConfigurationTemplate},
}
flavorTypeDataJSON, err := json.Marshal(flavorTypeData)
if err != nil {
klog.Errorf("Error when marshaling ServiceType: %s", err)
return nil, err
}
flavorType = nodecorev1alpha1.FlavorType{
TypeIdentifier: nodecorev1alpha1.TypeService,
TypeData: runtime.RawExtension{Raw: flavorTypeDataJSON},
}
case models.SensorNameDefault:
// TODO (Sensor): Implement Sensor flavor
return nil, fmt.Errorf("sensor flavor not implemented")
default:
klog.Errorf("Flavor type not recognized")
return nil, fmt.Errorf("flavor type not recognized")
}
f := &nodecorev1alpha1.Flavor{
ObjectMeta: metav1.ObjectMeta{
Name: flavor.FlavorID,
Namespace: flags.FluidosNamespace,
},
Spec: nodecorev1alpha1.FlavorSpec{
ProviderID: flavor.Owner.NodeID,
FlavorType: flavorType,
Owner: nodecorev1alpha1.NodeIdentity{
Domain: flavor.Owner.Domain,
IP: flavor.Owner.IP,
NodeID: flavor.Owner.NodeID,
},
Price: nodecorev1alpha1.Price{
Amount: flavor.Price.Amount,
Currency: flavor.Price.Currency,
Period: flavor.Price.Period,
},
Availability: flavor.Availability,
NetworkPropertyType: flavor.NetworkPropertyType,
Location: func() *nodecorev1alpha1.Location {
if flavor.Location != nil {
return &nodecorev1alpha1.Location{
Latitude: flavor.Location.Latitude,
Longitude: flavor.Location.Longitude,
Country: flavor.Location.Country,
City: flavor.Location.City,
AdditionalNotes: flavor.Location.AdditionalNotes,
}
}
return nil
}(),
},
}
return f, nil