summaryrefslogtreecommitdiffstats
path: root/docs/Release Notes.rst
blob: f08eb5c49511fc99aefbe07052de5844944c11b5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
.. _Release Notes:

..
 This work is licensed under a Creative Commons Attribution 4.0
 International License.

:orphan:

=============
Release Notes
=============


Version: 7.0.0 (Guilin Release)
-------------------------------

:Release Date: 2020-Nov-19

Guilin Release tag - 7.0.0

**New Features**

* Enables CNF orchestration with artifact format of helm charts

**The MultiCloud services consists of following components:**

**MultiCloud Broker (version: 1.6.0)**

* Fix bugs


**MultiCloud ArtifactBroker (version: 1.6.0)**

* Enhanced to support Artifact format of Helm Chart
* Upgrade to Java11


**MultiCloud FCAPS (version: 1.5.5)**

* None


**MultiCloud Plugin for Wind River Titanium Cloud (version: 1.5.5)**

* None


**MultiCloud Plugin for StarlingX (version: 1.5.5)**

* None


**MultiCloud Plugin for OpenStack versions (version: 1.5.5)**

* None



**MultiCloud Plugin for Kubernetes (version: 0.7.0)**

* Fix bugs


**Bug Fixes**

- `MULTICLOUD-1195 <https://jira.onap.org/browse/MULTICLOUD-1195>`_
  Multicloud used wrong MSB URL

**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  MultiCloud OpenStack: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  MultiCloud OpenStack: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  MultiCloud OpenStack: API request to multicloud with authorization header will be rejected

- `MULTICLOUD-601 <https://jira.onap.org/browse/MULTICLOUD-601>`_
  MultiCloud k8s: move to sigs yaml from ghodss

- `MULTICLOUD-661 <https://jira.onap.org/browse/MULTICLOUD-661>`_
  MultiCloud k8s: OVN Installation issues


**Security Notes**

*Fixed Security Issues*


*Known Security Issues*


*Known Vulnerabilities in Used Modules*


MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the
`project
<https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

  - `Project Vulnerability Review Table for Multicloud <https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_

  - `Multicloud K8s Plugin Service APIs <https://wiki.onap.org/display/DW/MultiCloud+K8s-Plugin-service+API's>`_

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for Azure
  has been stopped from Dublin Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Ocata
  has been stopped from El Alto Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Lenovo
  has been stopped from El Alto Release.
* The maintenance with regarding to MultiCloud plugin for VMware VIO
  has been stopped from Guilin Release.

**Other**

None


Version: 6.0.0 (Frankfurt Release)
-----------------------------------

:Release Date: 2020-May-07

**New Features**

* Enables CNF orchestration to StarlingX 3.0
* Enables CNF orchestration to WRCP 19.12
* Decouple OpenStack HPA discovery logic from OpenStack Plugins


**The MultiCloud services consists of following components:**

**MultiCloud Broker (version: 1.5.2)**

* Fix bugs


**MultiCloud ArtifactBroker (version: 1.5.2)**

* None


**MultiCloud FCAPS (version: 1.4.1)**

* None


**MultiCloud Plugin for Wind River Titanium Cloud (version: 1.5.5)**

* Enables CNF orchestration to WRCP 19.12


**MultiCloud Plugin for StarlingX (version: 1.5.5)**

* Enables CNF orchestration to StarlingX 3.0


**MultiCloud Plugin for OpenStack versions (version: 1.5.5)**

* Pike: Decouple OpenStack HPA discovery logic from OpenStack Plugins


**MultiCloud Plugin for VIO (version 1.4.1)**

* None


**MultiCloud Plugin for Azure (version 1.2.4)**

* None


**MultiCloud Plugin for Kubernetes (version: 0.6.0)**

* Replaced usage of vf module "model name/version name" in favor of "vf module model invariant/version uuid" for Resource Bundle naming, thus simplifying instantiation request's content
* Provided functionality of default Profiles allowing for instantiation of Resource Bundles without specifying profile when it's functionality is not needed
* Allowed providing instantiation-time override parameters to be merged into Resource Bundle's variables upon instantiation via oof/user/sdnc directives


**Bug Fixes**

- `MULTICLOUD-602 <https://jira.onap.org/browse/MULTICLOUD-602>`_
  MultiCloud WindRiver: Error when registering a cloud after deleting it

- `MULTICLOUD-846 <https://jira.onap.org/browse/MULTICLOUD-846>`_
  MultiCloud Pike: Query stack by infra_workload API returns false status

- `MULTICLOUD-857 <https://jira.onap.org/browse/MULTICLOUD-857>`_
  multicloud azure plugin failed to build due to incompatible with py3

- `MULTICLOUD-866 <https://jira.onap.org/browse/MULTICLOUD-866>`_
  MultiCloud StarlingX: so openstack adapter not working with starlingx

- `MULTICLOUD-869 <https://jira.onap.org/browse/MULTICLOUD-869>`_
  Wrong distribution of K8s definitions with many vf-modules

- `MULTICLOUD-968 <https://jira.onap.org/browse/MULTICLOUD-968>`_
  the cloud region failed to be registered at second time

- `MULTICLOUD-970 <https://jira.onap.org/browse/MULTICLOUD-970>`_
  parsing of Region name is incorrect

- `MULTICLOUD-1004 <https://jira.onap.org/browse/MULTICLOUD-1004>`_
  KUD Multi Vagrant 18.04 issue

- `MULTICLOUD-1020 <https://jira.onap.org/browse/MULTICLOUD-1020>`_
  hpa docker failure

- `MULTICLOUD-1025 <https://jira.onap.org/browse/MULTICLOUD-1025>`_
  Handle non-typical tar file inside k8splugin properly

- `MULTICLOUD-1028 <https://jira.onap.org/browse/MULTICLOUD-1028>`_
  hpa capabilities is not define

- `MULTICLOUD-1036 <https://jira.onap.org/browse/MULTICLOUD-1036>`_
  Correct multicloud artifact broker configuration for Frankfurt

- `MULTICLOUD-1039 <https://jira.onap.org/browse/MULTICLOUD-1039>`_
  cloud region unregistry API failed to clean related cache entries


**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  MultiCloud OpenStack: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  MultiCloud OpenStack: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  MultiCloud OpenStack: API request to multicloud with authorization header will be rejected

- `MULTICLOUD-601 <https://jira.onap.org/browse/MULTICLOUD-601>`_
  MultiCloud k8s: move to sigs yaml from ghodss

- `MULTICLOUD-661 <https://jira.onap.org/browse/MULTICLOUD-661>`_
  MultiCloud k8s: OVN Installation issues


**Security Notes**

*Fixed Security Issues*


*Known Security Issues*


*Known Vulnerabilities in Used Modules*


MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the
`project
<https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

  - `Project Vulnerability Review Table for Multicloud <https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_

  - `Multicloud K8s Plugin Service APIs <https://wiki.onap.org/display/DW/MultiCloud+K8s-Plugin-service+API's>`_

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Ocata
  has been stopped from El Alto Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Lenovo
  has been stopped from El Alto Release.

**Other**

None


Version: 5.0.1 (El Alto Release)
-----------------------------------

:Release Date: 2019-10-24

**New Features**

* Rebase to Python 3


**The MultiCloud services consists of following components:**

**MultiCloud Broker (version: 1.4.2)**

* Rebase to Python 3
* Update django version to 2.2.3


**MultiCloud ArtifactBroker (version: 1.4.2)**

* None


**MultiCloud FCAPS (version: 1.4.1)**

* Rebase to Python 3
* Update django version to 2.2.3


**MultiCloud Plugin for Wind River Titanium Cloud (version: 1.4.1)**

* Rebase to Python 3
* Update django version to 2.2.3

**MultiCloud Plugin for StarlingX (version: 1.4.1)**

* Rebase to Python 3
* Update django version to 2.2.3


**MultiCloud Plugin for OpenStack versions (version: 1.3.4)**

* Rebase to Python 3 for pike plugin
* Update django version to 2.2.3

**MultiCloud Plugin for VIO (version 1.4.1)**

* Rebase to Python 3
* Update django version


**MultiCloud Plugin for Azure (version 1.2.4)**

* None

**MultiCloud Plugin for Kubernetes (version: 0.5.0)**

* Add support for Network Operator
* Update Kubespray and Kube version in KuD
* Use Multus DaemonSet for installing Multus in KuD
* Use NFD DaemonSet to integrate Node Feature discovery in KuD

**Bug Fixes**


- `MULTICLOUD-644 <https://jira.onap.org/browse/MULTICLOUD-644>`_
  MultiCloud k8s: KUD - Go version is not correct

- `MULTICLOUD-684 <https://jira.onap.org/browse/MULTICLOUD-684>`_
  MultiCloud k8s: KUD - OVN Network Operator

- `MULTICLOUD-663 <https://jira.onap.org/browse/MULTICLOUD-663>`_
  MultiCloud k8s: Multus error when the namesapace is not default

- `MULTICLOUD-681 <https://jira.onap.org/browse/MULTICLOUD-681>`_
  MultiCloud k8s: Use Multus DaemonSet for installing Multus in KuD

- `MULTICLOUD-772 <https://jira.onap.org/browse/MULTICLOUD-772>`_
  MultiCloud k8s: Update the version of Kubespray in KUD

- `MULTICLOUD-797 <https://jira.onap.org/browse/MULTICLOUD-797>`_
  MultiCloud k8s: Use NFD DaemonSet for integrating Node Feature discovery in KuD

- `MULTICLOUD-614 <https://jira.onap.org/browse/MULTICLOUD-614>`_
  MultiCloud k8s: Create KubeConfigDir if it does not exist

- `MULTICLOUD-662 <https://jira.onap.org/browse/MULTICLOUD-662>`_
  MultiCloud k8s: Add Find/Get method to get instance for a particular profile

- `MULTICLOUD-574 <https://jira.onap.org/browse/MULTICLOUD-574>`_
  MultiCloud k8s: Use defferedrestmapper instead of the normal one

- `MULTICLOUD-557 <https://jira.onap.org/browse/MULTICLOUD-557>`_
  MultiCloud k8s: Kubernetes kind plugins should implement an interface

- `MULTICLOUD-835 <https://jira.onap.org/browse/MULTICLOUD-835>`_
  MultiCloud Framework: Cannot Register cloud region with multicloud via REST

**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  MultiCloud OpenStack: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  MultiCloud OpenStack: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  MultiCloud OpenStack: API request to multicloud with authorization header will be rejected

- `MULTICLOUD-661 <https://jira.onap.org/browse/MULTICLOUD-661>`_
  MultiCloud k8s: OVN Installation issues

- `MULTICLOUD-601 <https://jira.onap.org/browse/MULTICLOUD-601>`_
  MultiCloud k8s: move to sigs yaml from ghodss

- `MULTICLOUD-602 <https://jira.onap.org/browse/MULTICLOUD-602>`_
  MultiCloud WindRiver: Error when registering a cloud after deleting it

- `MULTICLOUD-846 <https://jira.onap.org/browse/MULTICLOUD-846>`_
  MultiCloud Pike: Query stack by infra_workload API returns false status

- `MULTICLOUD-866 <https://jira.onap.org/browse/MULTICLOUD-866>`_
  MultiCloud StarlingX: so openstack adapter not working with starlingx

**Security Notes**

*Fixed Security Issues*


*Known Security Issues*


*Known Vulnerabilities in Used Modules*


MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the
`project <https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

  - `Project Vulnerability Review Table for Multicloud <https://wiki.onap.org/pages/viewpage.action?pageId=68541501>`_

  - `Multicloud K8s Plugin Service APIs <https://wiki.onap.org/display/DW/MultiCloud+K8s-Plugin-service+API's>`_

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Ocata
  has been stopped from El Alto Release.
* The maintenance with regarding to MultiCloud plugin for OpenStack Lenovo
  has been stopped from El Alto Release.

**Other**

None


Version: 4.0.0 (Dublin Release)
-----------------------------------

:Release Date: 2019-06-10

**New Features**

* Upgraded the Generic API to offload Infrastructure's workload LCM from SO to
  MutliCloud
* Upgraded the Capacity Check API to support F-GPS for OOF
* Enhanced the security by enabling secured communication and run as
  non-root user
* Enhanced the multicloud NBI to support multi-tenant by new header field
* Minimized docker image footprint by rebasing images to Alpine
* Refactored and enhance the MultiCloud OpenStack VES agent service to a
  standalone service as multicloud-fcaps
* Updated the plugin for Wind River Titanium Cloud to realize the enhanced
  the Generic API
* Added plugin for Kubernetes based cloud regions which supports deployment
  via Helm Charts
* Added artifactbroker as a SDC client to retrieve VNF artifacts for Multicloud
  plugins services
* Added plugin for StarlingX
* Added plugin for ThinkCloud


**The MultiCloud services consists of following components:**

**MultiCloud Broker (version: 1.3.3)**

* Extended infra_workload API for better integration of SO and MultiCloud
* Extended check_vim_capacity API to check capacity at AZ level
* Added optional header field "Project" to support multi-tenants
* Added plugin type for k8s and starlingx
* Run as non-root user


**MultiCloud ArtifactBroker (version: 1.3.3)**

* Added artifactbroker service to retrieve VNF artifacts from SDC
* Deployed as a sidecar for MultiCloud Plugin services
* Run as non-root user


**MultiCloud FCAPS (version: 1.3.4)**

* Common service to support relay FCAPS data from OpenStack
* Rebased image to alpine in favor of Docker image footprint
* Enable HTTPS endpoints to realize secured communication requirement
* Run as non-root user


**MultiCloud Plugin for Wind River Titanium Cloud (version: 1.3.4)**

* Enhanced the infra_workload to realize the extended API requirements
* Enhanced the capacity_check API to check the capacity on AZ level
* Enhanced the API handler to accept new request Header "Project"
* Refactored the helper codes into separated thread.
* Rebased image to alpine in favor of Docker image footprint
* Enable HTTPS endpoints to realize secured communication requirement
* Move the vesagent functionality to MultiCloud FCAPS module
* Run as non-root user

**MultiCloud Plugin for StarlingX (version: 1.3.4)**

* Align to MultiCloud Plugin for Wind River
* Run as non-root user


**MultiCloud Plugin for OpenStack versions (version: 1.3.4)**

* Support OpenStack Ocata, Pike
* Rebased image to alpine in favor of Docker image footprint
* Enable HTTPS endpoints to realize secured communication requirement
* Run as non-root user

**MultiCloud Plugin for VIO (version 1.3.1)**

* Enable CCVPN DR API through extention.
* Enable multi architecture support for MultiCloud-VIO image.
* Enable vsphere operation support and vmdk validation.
* Enhanced the capacity_check API to check the capacity on AZ level.
* Enable HTTPS endpoints to realize secured communication requirement.
* Optimize image size and run as non-root user.


**MultiCloud Plugin for Azure (version 1.2.4)**

* Rebased image to alpine in favor of Docker image footprint
* Run as non-root user

**MultiCloud Plugin for Kubernetes (version: 0.4.0)**

* Create workloads in Kubernetes based cloud regions
* Provides REST api to upload Helm Charts as artifacts
* The Helm Charts can be customized via a Profile API before deployment
* Added a connectivity API that allows you to upload KubeConfig
  information that is then used to access/modify resources in a cluster
* Provides a Day 2 configuration API that allows modifying resources in
  a cluster
* Tested with Edgex Helm charts and vFirewall Helm charts


**Bug Fixes**

- `MULTICLOUD-605 <https://jira.onap.org/browse/MULTICLOUD-605>`_
  MultiCloud Plugin: Robot Heat Bridge fails to Multicloud due to the
  keystone client in Init Bridge is not getting the identity url
  back from MultiCloud.

- `MULTICLOUD-657 <https://jira.onap.org/browse/MULTICLOUD-657>`_
  MultiCloud WindRiver: VF-C cannot enumerate tenants list with API v1

- `MULTICLOUD-651 <https://jira.onap.org/browse/MULTICLOUD-651>`_
  MultiCloud artifactbroker: artifactbroker does not compose appropriate
  meta files for MultiCloud plugins

- `MULTICLOUD-653 <https://jira.onap.org/browse/MULTICLOUD-653>`_
  MultiCloud k8s: vFw Helm charts installs ok but not traffic seen on sink

- `MULTICLOUD-656 <https://jira.onap.org/browse/MULTICLOUD-656>`_
  MultiCloud WindRiver: MultiCloud WindRiver plugin cannot load VF Module
  artifacts which are fed by artifactbroker

- `MULTICLOUD-633 <https://jira.onap.org/browse/MULTICLOUD-633>`_
  MultiCloud Doc: Update the infra_workload API to reflect enhancement
  in Dublin

- `MULTICLOUD-584 <https://jira.onap.org/browse/MULTICLOUD-584>`_
  MultiCloud FCAPS: Multicloud-fcaps fails health check with 502

- `MULTICLOUD-627 <https://jira.onap.org/browse/MULTICLOUD-627>`_
  MultiCloud Azure: multicloud-azure docker image cannot boot up
  after rebasing to alpine

- `MULTICLOUD-611 <https://jira.onap.org/browse/MULTICLOUD-611>`_
  MultiCloud WindRiver: 500 resturn code for some infra_workload API calls

- `MULTICLOUD-603 <https://jira.onap.org/browse/MULTICLOUD-603>`_
  MultiCloud WindRiver: Error returns while querying workload-id after
  workload create

- `MULTICLOUD-588 <https://jira.onap.org/browse/MULTICLOUD-588>`_
  MultiCloud Broker: broker fails to boot up after rebasing to alpine

- `MULTICLOUD-477 <https://jira.onap.org/browse/MULTICLOUD-477>`_
  MultiCloud OpenStack: service URL definitions interfere with each other

- `MULTICLOUD-476 <https://jira.onap.org/browse/MULTICLOUD-476>`_
  MultiCloud Broker: POST fails on v1 interface

- `MULTICLOUD-478 <https://jira.onap.org/browse/MULTICLOUD-478>`_
  MultiCloud OpenStack: Handling of mapping from v3 keystone to v2 keystone
  is faulty

- `MULTICLOUD-479 <https://jira.onap.org/browse/MULTICLOUD-479>`_
  MultiCloud WindRiver: heatbridge_update not working correctly

- `MULTICLOUD-645 <https://jira.onap.org/browse/MULTICLOUD-645>`_
  MultiCloud k8s: Multicloud-k8s to SO responses don't match

- `MULTICLOUD-283 <https://jira.onap.org/browse/MULTICLOUD-283>`_
  MultiCloud Doc: API documentation : POST tokens is missing

- `MULTICLOUD-585 <https://jira.onap.org/browse/MULTICLOUD-585>`_
  MultiCloud k8s: CustomResourceDefinitions are not getting created

- `MULTICLOUD-595 <https://jira.onap.org/browse/MULTICLOUD-595>`_
  MultiCloud WindRiver: unexpected exception during registration without privilege

- `MULTICLOUD-582 <https://jira.onap.org/browse/MULTICLOUD-582>`_
  MultiCloud k8s: Fix error in CSIT setup.sh

- `MULTICLOUD-575 <https://jira.onap.org/browse/MULTICLOUD-575>`_
  MultiCloud k8s: k8s docker build is broken

- `MULTICLOUD-462 <https://jira.onap.org/browse/MULTICLOUD-462>`_
  MultiCloud k8s: Namespace should be created by k8splugin before resources
  are created in kubernetes

- `MULTICLOUD-483 <https://jira.onap.org/browse/MULTICLOUD-483>`_
  MultiCloud StarlingX: Starling-X healthcheck test is FAIL

- `MULTICLOUD-562 <https://jira.onap.org/browse/MULTICLOUD-562>`_
  MultiCloud k8s: Fix multicloud-k8s csit

- `MULTICLOUD-558 <https://jira.onap.org/browse/MULTICLOUD-558>`_
  MultiCloud k8s: Make profile keys explicit

- `MULTICLOUD-552 <https://jira.onap.org/browse/MULTICLOUD-552>`_
  MultiCloud OpenStack: HPA passthrough discovery is not right

- `MULTICLOUD-525 <https://jira.onap.org/browse/MULTICLOUD-525>`_
  MultiCloud k8s: chart name should not be mandatory

- `MULTICLOUD-439 <https://jira.onap.org/browse/MULTICLOUD-439>`_
  MultiCloud k8s: reflect.deepequal does not work in tests

- `MULTICLOUD-440 <https://jira.onap.org/browse/MULTICLOUD-440>`_
  MultiCloud k8s: Refactor definition_test code

- `MULTICLOUD-438 <https://jira.onap.org/browse/MULTICLOUD-438>`_
  MultiCloud k8s: definition upload calls db create in wrong order

- `MULTICLOUD-435 <https://jira.onap.org/browse/MULTICLOUD-435>`_
  MultiCloud k8s: Delete should not error out if there is no document found

- `MULTICLOUD-619 <https://jira.onap.org/browse/MULTICLOUD-619>`_
  MultiCloud k8s: System wide environment variables not sourced by default
  for tests

- `MULTICLOUD-607 <https://jira.onap.org/browse/MULTICLOUD-607>`_
  MultiCloud k8s: Wrong logic for pip installation/upgrade

- `MULTICLOUD-610 <https://jira.onap.org/browse/MULTICLOUD-610>`_
  MultiCloud k8s: kud installation fails with old golang version

- `MULTICLOUD-620 <https://jira.onap.org/browse/MULTICLOUD-620>`_
  MultiCloud k8s: aio.sh is not rerunnable

- `MULTICLOUD-643 <https://jira.onap.org/browse/MULTICLOUD-643>`_
  MultiCloud artifactbroker: gson parse issue for the list of VF_MODULE_ARTIFACT

- `MULTICLOUD-620 <https://jira.onap.org/browse/MULTICLOUD-620>`_
  MultiCloud k8s: aio.sh is not rerunnable

- `MULTICLOUD-620 <https://jira.onap.org/browse/MULTICLOUD-620>`_
  MultiCloud k8s: aio.sh is not rerunnable

**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  MultiCloud OpenStack: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  MultiCloud OpenStack: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  MultiCloud OpenStack: API request to multicloud with authorization header will be rejected

- `MULTICLOUD-644 <https://jira.onap.org/browse/MULTICLOUD-644>`_
  MultiCloud k8s: KUD - Go version is not correct

- `MULTICLOUD-663 <https://jira.onap.org/browse/MULTICLOUD-663>`_
  MultiCloud k8s: Multus error when the namesapace is not default

- `MULTICLOUD-614 <https://jira.onap.org/browse/MULTICLOUD-614>`_
  MultiCloud k8s: Create KubeConfigDir if it does not exist

- `MULTICLOUD-662 <https://jira.onap.org/browse/MULTICLOUD-662>`_
  MultiCloud k8s: Add Find/Get method to get instance for a particular profile

- `MULTICLOUD-661 <https://jira.onap.org/browse/MULTICLOUD-661>`_
  MultiCloud k8s: OVN Installation issues

- `MULTICLOUD-574 <https://jira.onap.org/browse/MULTICLOUD-574>`_
  MultiCloud k8s: Use defferedrestmapper instead of the normal one

- `MULTICLOUD-601 <https://jira.onap.org/browse/MULTICLOUD-601>`_
  MultiCloud k8s: move to sigs yaml from ghodss

- `MULTICLOUD-602 <https://jira.onap.org/browse/MULTICLOUD-602>`_
  MultiCloud WindRiver: Error when registering a cloud after deleting it


**Security Notes**

*Fixed Security Issues*

- `OJSI-130 <https://jira.onap.org/browse/OJSI-130>`_
  In default deployment MULTICLOUD (multicloud-azure) exposes HTTP port 30261 outside of cluster.

- `OJSI-148 <https://jira.onap.org/browse/OJSI-148>`_
  In default deployment MULTICLOUD (multicloud) exposes HTTP port 30291 outside of cluster.

- `OJSI-150 <https://jira.onap.org/browse/OJSI-150>`_
  In default deployment MULTICLOUD (multicloud-ocata) exposes HTTP port 30293 outside of cluster.

- `OJSI-151 <https://jira.onap.org/browse/OJSI-151>`_
  In default deployment MULTICLOUD (multicloud-windriver) exposes HTTP port 30294 outside of cluster.

- `OJSI-153 <https://jira.onap.org/browse/OJSI-153>`_
  In default deployment MULTICLOUD (multicloud-pike) exposes HTTP port 30296 outside of cluster.

- `OJSI-149 <https://jira.onap.org/browse/OJSI-149>`_
  In default deployment MULTICLOUD (multicloud-vio) exposes HTTP port 30292 outside of cluster.


*Known Security Issues*


*Known Vulnerabilities in Used Modules*


MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the
`project <https://wiki.onap.org/pages/viewpage.action?pageId=64004594>`__.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

  - `Project Vulnerability Review Table for Multicloud <https://wiki.onap.org/pages/viewpage.action?pageId=64004594>`__

  - `Multicloud K8s Plugin Service APIs <https://wiki.onap.org/display/DW/MultiCloud+K8s-Plugin-service+API's>`__

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.

**Other**

None


Version: 3.0.1 (Casablanca Maintenance Release)
-----------------------------------------------

:Release Date: January 31st, 2019


**New Features**

None

**The MultiCloud services in this release consist of following components:**

- MultiCloud Broker (version: 1.2.2)

- MultiCloud Plugin for Wind River Titanium Cloud (version: 1.2.4)

- MultiCloud Plugin for OpenStack Ocata (version: 1.2.4)

- MultiCloud Plugin for OpenStack Pike (version: 1.2.4)

- MultiCloud Plugin for VIO (version 1.2.2)

- MultiCloud Plugin for Azure (version 1.2.2)


**Bug Fixes**

- `MULTICLOUD-253 <https://jira.onap.org/browse/MULTICLOUD-253>`_
  meta_data initialized with wrong type

- `MULTICLOUD-386 <https://jira.onap.org/browse/MULTICLOUD-386>`_
  Multicloud Fails with Keystone v2.0

- `MULTICLOUD-390 <https://jira.onap.org/browse/MULTICLOUD-390>`_
  Cloud userdata is not passed to openstack nova instance.

- `MULTICLOUD-391 <https://jira.onap.org/browse/MULTICLOUD-391>`_
  Remove non-standard disclaimer from license files

- `MULTICLOUD-404 <https://jira.onap.org/browse/MULTICLOUD-404>`_
  multicloud return value is inconsistent between plugin and broker

- `MULTICLOUD-405 <https://jira.onap.org/browse/MULTICLOUD-405>`_
  multicloud metadata format is incorrect

- `MULTICLOUD-407 <https://jira.onap.org/browse/MULTICLOUD-407>`_
  multicloud does not pass userdata to openstack

- `MULTICLOUD-412 <https://jira.onap.org/browse/MULTICLOUD-412>`_
  Discover snapshots get error

- `MULTICLOUD-414 <https://jira.onap.org/browse/MULTICLOUD-414>`_
  Fix reboot vm problem

- `MULTICLOUD-415 <https://jira.onap.org/browse/MULTICLOUD-415>`_
  multicloud ocata and pike cannot discover VIM resources

- `MULTICLOUD-423 <https://jira.onap.org/browse/MULTICLOUD-423>`_
  multicloud DELETE without a stack-id still deletes a stack

- `MULTICLOUD-431 <https://jira.onap.org/browse/MULTICLOUD-431>`_
  Multicloud registration error with image version 1.2.2

- `MULTICLOUD-456 <https://jira.onap.org/browse/MULTICLOUD-456>`_
  Multicloud Infra_workload API performance issue with image version 1.2.3



**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  OPENO images API: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  OPENO servers API: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  API request to multicloud with authorization header will be rejected


**Security Notes**

*Fixed Security Issues*


*Known Security Issues*

- `OJSI-130 <https://jira.onap.org/browse/OJSI-130>`_
  In default deployment MULTICLOUD (multicloud-azure) exposes HTTP port 30261 outside of cluster.

- `OJSI-148 <https://jira.onap.org/browse/OJSI-148>`_
  In default deployment MULTICLOUD (multicloud) exposes HTTP port 30291 outside of cluster.

- `OJSI-150 <https://jira.onap.org/browse/OJSI-150>`_
  In default deployment MULTICLOUD (multicloud-ocata) exposes HTTP port 30293 outside of cluster.

- `OJSI-151 <https://jira.onap.org/browse/OJSI-151>`_
  In default deployment MULTICLOUD (multicloud-windriver) exposes HTTP port 30294 outside of cluster.

- `OJSI-153 <https://jira.onap.org/browse/OJSI-153>`_
  In default deployment MULTICLOUD (multicloud-pike) exposes HTTP port 30296 outside of cluster.

- `OJSI-149 <https://jira.onap.org/browse/OJSI-149>`_
  In default deployment MULTICLOUD (multicloud-vio) exposes HTTP port 30292 outside of cluster.


*Known Vulnerabilities in Used Modules*


MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the
`Multi-VIM/Cloud <https://wiki.onap.org/pages/viewpage.action?pageId=45310604>`_.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

  - `Project Vulnerability Review Table for Multicloud Casablanca Maintenance Release <https://wiki.onap.org/pages/viewpage.action?pageId=45310604>`_

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.

**Other**

The latest release tag 1.2.4 for OpenStack plugins is not part of OOM chart in
Casablanca Maintenance Release yet. Please update the OOM chart manually
to upgrade the docker images with version tag 1.2.4 to fix bug: MULTICLOUD-456


Version: 3.0.0 (Casablanca Release)
-----------------------------------

:Release Date: 2018-11-30

**New Features**

* Enriched the documentaton with Architecture descriptions
* Verified the supports to end to end vCPE TOSCA VNF use case
* Upgraded to Northbound API v1 to support `Consistent ID of a Cloud Region`
* Added new Generic API to offload Infrastructure's workload LCM from SO to
  MutliCloud
* Updated the plugin for Wind River to support Titanium Cloud R5
* Updated the plugin for VIO to support VIO 5.0
* Added a plugin to support OpenStack Pike
* Released Azure's plugin seed code
* Released Kubernetes' plugin seed code


**The MultiCloud services consists of following components:**

**MultiCloud Broker (version: 1.2.2)**

* Added plugin type for azure and pike
* Added API v1 to align to `Consistent ID of a Cloud Region`
* Added API infra_workload to enable SO and MultiCloud Integration

**MultiCloud Plugin for Wind River Titanium Cloud (version: 1.2.2)**

* Expanded the HPA discovery and registration to cover SR-IOV NICs.
* Decoupled AAI's cloud-region-id from OpenStack Region ID
* Automated the on-boarding multiple OpenStack instances leveraging OpenStack
  multi-region feature.
* Enabled the on-boarding of subclouds of Titanium Cloud in Distributed Cloud
  Mode
* Automated the decommission of a Cloud Region
* Automated the updating AAI with heat stack resources
* Enabled Server Operations API for Auto-Healing
* Cached the AAI cloud region data to improve the API handling performance
* Passed the vCPE TOSCA VNF use case with several critical issues fixed
* Fixed the keystone v2.0 endpoint issue

**MultiCloud Plugin for OpenStack (version: 1.2.2)**

* Expanded the HPA discovery and registration to cover SR-IOV NICs.
* Decoupled AAI's cloud-region-id from OpenStack Region ID
* Enabled Server Operations API for Auto-Healing
* Cached the AAI cloud region data to improve the API handling performance
* Passed the vCPE TOSCA VNF use case with several critical issues fixed
* Fixed the keystone v2.0 endpoint issue


**MultiCloud Plugin for VIO (version 1.2.2)**

* Expanded the HPA discovery and registration to cover SR-IOV NICs.
* Decoupled AAI's cloud-region-id from OpenStack Region ID
* Automated the on-boarding multiple OpenStack instances leveraging OpenStack
  multi-region feature.
* Automated the decommission of a Cloud Region
* Supported Cloud Agnostic Placement Policies in VIO plugin
* Enabled Server Operations API for Auto-Healing
* Enabled marker support on logging


**MultiCloud Plugin for Azure (version 1.2.2)**

* Released inital seed code
* Enabled flavor discovery during on-boarding of azure cloud
* Supported for OOB vFW and vDNS use cases using the plugin

**MultiCloud Plugin for Kubernetes (version: N/A)**

* Released initial seed code
* Supported Service, Deployment and Namespace Kubernetes objects for this
  initial phase
* Provided functional tests for ensuring its correct operation using an
  emulated ONAP interaction
* Included a vagrant project for provisioning a Kubernetes deployment


**Bug Fixes**

- `MULTICLOUD-253 <https://jira.onap.org/browse/MULTICLOUD-253>`_
  OPENO servers API: meta_data is generated in wrong type

- `MULTICLOUD-386 <https://jira.onap.org/browse/MULTICLOUD-386>`_
  OPENO identity API: identity API cannot work with keystone endpoint v2.0

- `MULTICLOUD-390 <https://jira.onap.org/browse/MULTICLOUD-390>`_
  OPENO servers API: pass userdata without contextArray, then "user_data"
  is not being passed to nova instance API.

**Known Issues**

- `MULTICLOUD-359 <https://jira.onap.org/browse/MULTICLOUD-359>`_
  OPENO images API: image creating API cannot handle large image file

- `MULTICLOUD-389 <https://jira.onap.org/browse/MULTICLOUD-389>`_
  OPENO servers API: keypair cannot be passed for nova instance creation

- `MULTICLOUD-421 <https://jira.onap.org/browse/MULTICLOUD-421>`_
  API request to multicloud with authorization header will be rejected



**Security Notes**

MULTICLOUD code has been formally scanned during build time using NexusIQ and
all Critical vulnerabilities have been addressed, items that remain open have
been assessed for risk and determined to be false positive.

The MULTICLOUD open Critical security vulnerabilities and their risk
assessment have been documented as part of the `project
<https://wiki.onap.org/pages/viewpage.action?pageId=43386067>`__.


Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`__

  - `Project Vulnerability Review Table for Multicloud <https://wiki.onap.org/pages/viewpage.action?pageId=43386067>`__

**Upgrade Notes**

None

**Deprecation Notes**

* The maintenance with regarding to MultiCloud plugin for OpenStack Newton
  has been stopped from Casablanca Release.

**Other**

None


Version: 2.0.0 (Beijing Release)
--------------------------------

:Release Date: 2018-06-07


**New Features**

* Allow to check capacity capability for smart VNF placement across VIMs.
* Declarative template driven framework to generate API dynamically.
* Federate the events of VIM layer with ONAP message bus which provide direct
  help to HA fencing and improve the
  efficiency of VM recover with performance verification.
* Enable basic HPA discovery and representing at Multi VIM/Cloud when registry.
* Enable distributed log collection mechanism to a centralized logging
  analysis system.
* Improve parallelism of Multi VIM/Cloud service framework with performance
  verification.
* Upload and download images based on Cloud storage capabilities to support
  remote image distribution requirement.

**Bug Fixes**

- `MULTICLOUD-225 <https://jira.onap.org/browse/MULTICLOUD-225>`_
  Allow to forward header properties through Multi VIM/Cloud framework

- `MULTICLOUD-221 <https://jira.onap.org/browse/MULTICLOUD-221>`_
  Fix VESAgent health check flow

- `MULTICLOUD-220 <https://jira.onap.org/browse/MULTICLOUD-220>`_
  Fix Multi VIM/Cloud plugins to enable ID binding with each request.


**Known Issues**

- `MULTICLOUD-242 <https://jira.onap.org/browse/MULTICLOUD-242>`_
  One known issue is that the Ocata image is not put into the consistent place
  as R1 and please attention to the
  download path when you choose manual installation of Ocata plugin from the
  image pool.

**Security Notes**

MULTICLOUD code has been formally scanned during build time using NexusIQ and
no Critical vulnerability were found.

Quick Links:
  - `MULTICLOUD project page <https://wiki.onap.org/pages/viewpage.action?pageId=6592841>`_

  - `Passing Badge information for MULTICLOUD <https://bestpractices.coreinfrastructure.org/en/projects/1706>`_

**Upgrade Notes**

None

**Deprecation Notes**

None

**Other**

None

Version: 1.0.0 (Amsterdam Release)
----------------------------------

:Release Date: 2017-11-16


**New Features**

* Keystone proxy for convenient integration with modules which depend on
  original OpenStack functions
* Multiple VIM registry and unregister
* Resources LCM functions
* Auto-deployment support to both K8s and heat
* Hierarchical binding based integration with the third party SDN controller
* Basic Fcaps alert collection support, VM abnormal status is thrown out as
  an example
* Fake cloud based Unit and system test framework
* Complete code coverage detection, CSIT, and document framework
* Provide several plugins of different backbends, including: Vanilla OpenStack
  (based on Ocata) and commercial Clouds including OpenStack (including
  Titanium - Mitaka from Wind River and VIO - Ocata from VMware)

**Bug Fixes**

- `MULTICLOUD-123 <https://jira.onap.org/browse/MULTICLOUD-123>`_
  Append v3 to keystone url by default, if keystone version is missing.

- `MULTICLOUD-102 <https://jira.onap.org/browse/MULTICLOUD-102>`_
  Throw exception in Multi Cloud when backend OpenStack throw exceptions.

- `MULTICLOUD-101 <https://jira.onap.org/browse/MULTICLOUD-101>`_
  Fix failed to add image info to AAI if image name didn't contain '-'.


**Known Issues**

None

**Security Issues**

None

**Upgrade Notes**

None

**Deprecation Notes**

None

**Other**

None

===========

End of Release Notes