-
Notifications
You must be signed in to change notification settings - Fork 4
/
content
6900 lines (6900 loc) · 456 KB
/
content
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
{
"results": [
{
"id": "47284311",
"type": "page",
"status": "current",
"title": "Iruya release plan",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "sofiawallin",
"userKey": "2c9e48d5530c3c9101537c82aad90004",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Sofia Wallin",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d5530c3c9101537c82aad90004"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2019-10-23T13:05:14.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/47284311/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "sofiawallin",
"userKey": "2c9e48d5530c3c9101537c82aad90004",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Sofia Wallin",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d5530c3c9101537c82aad90004"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-23T13:06:20.000Z",
"message": "",
"number": 1,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/47284311/version/1"
},
"_expandable": {
"content": "/rest/api/content/47284311"
}
},
"ancestors": [
{
"id": "5046514",
"type": "page",
"status": "current",
"title": "OPNFV Documentation",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/opnfvdocs/OPNFV+Documentation",
"edit": "/pages/resumedraft.action?draftId=5046514",
"tinyui": "/x/8gBN",
"self": "https://wiki.opnfv.org/rest/api/content/5046514"
},
"_expandable": {
"container": "/rest/api/space/opnfvdocs",
"metadata": "",
"operations": "",
"children": "/rest/api/content/5046514/child",
"restrictions": "/rest/api/content/5046514/restriction/byOperation",
"history": "/rest/api/content/5046514/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/5046514/descendant",
"space": "/rest/api/space/opnfvdocs"
}
}
],
"body": {
"storage": {
"value": "<h2>Release activities for the Iruya release</h2><ul><li>Disable old release version on RTD?</li></ul><h2>Maintenance activities for opnfvdocs </h2><p>As for every release opnfvdocs strives to improve where necessary, content, usability and processes. </p><ul><li>Set up a structure and templates for document development with source control (same as source code). Leveraging upstream documentation structure and tools.</li><li>Following as close as possible the same contribution process & tools as our source code</li><li>Develop initial set of release documents:<ul><li>Installation instructions </li><li>Configuration guide & User Guide</li><li>Overview</li><li>Releas notes</li></ul></li><li>Provide language guidance. All documents should be written in English.</li><li>Provide processes and tooling for OPNFV projects to implement and follow for consistency</li></ul>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/47284311"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/opnfvdocs/Iruya+release+plan",
"edit": "/pages/resumedraft.action?draftId=47284311&draftShareId=06ba8e88-79c1-4085-abeb-0e9477c63c6f",
"tinyui": "/x/V4DRAg",
"self": "https://wiki.opnfv.org/rest/api/content/47284311"
},
"_expandable": {
"container": "/rest/api/space/opnfvdocs",
"metadata": "",
"operations": "",
"children": "/rest/api/content/47284311/child",
"restrictions": "/rest/api/content/47284311/restriction/byOperation",
"descendants": "/rest/api/content/47284311/descendant",
"space": "/rest/api/space/opnfvdocs"
}
},
{
"id": "5046514",
"type": "page",
"status": "current",
"title": "OPNFV Documentation",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "blsaws",
"userKey": "2c9e48d5521dc09301523dbdf88f0004",
"profilePicture": {
"path": "/download/attachments/1933958/user-avatar",
"width": 48,
"height": 48,
"isDefault": false
},
"displayName": "Bryan Sullivan",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d5521dc09301523dbdf88f0004"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2016-03-28T04:54:14.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/5046514/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "sofiawallin",
"userKey": "2c9e48d5530c3c9101537c82aad90004",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Sofia Wallin",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d5530c3c9101537c82aad90004"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-23T13:24:48.000Z",
"message": "",
"number": 59,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/5046514/version/59"
},
"_expandable": {
"content": "/rest/api/content/5046514"
}
},
"ancestors": [],
"body": {
"storage": {
"value": "<ac:layout><ac:layout-section ac:type=\"two_right_sidebar\"><ac:layout-cell><h2>Welcome to the OPNFVDOCS project page</h2><h4>Project description:</h4><ul><li><h6>Support in producing documentation for OPNFV releases</h6></li><li><h6>Define guidelines and tooling for documentation handling across all OPNFV projects</h6></li><li><h6>Include any architecture diagrams or specifications, reference to OPNFV requirements list</h6></li><li><h6>Maintain the OPNFV documentation libraries </h6></li></ul><h4>How to work with documentation in OPNFV please look at the <a href=\"http://docs.opnfv.org/en/latest/\">documentation guide</a></h4><h4>Release plan: <ac:link><ri:page ri:content-title=\"Iruya release plan\" /></ac:link></h4><h4>Maintenance:</h4><ul><li style=\"list-style-type: none;background-image: none;\"><ul><li><h6>Set up a structure and templates for document development with source control (same as source code). Leveraging upstream documentation structure and tools.</h6></li><li><h6>Following as close as possible the same contribution process & tools as our source code</h6></li><li><h6>Develop initial set of release documents:</h6><ul><li><h6>Installation Instruction </h6></li><li><h6><span style=\"color: rgb(112,112,112);\">Configuration & User</span> Guide</h6></li><li><h6>Overview</h6></li><li><h6>Release Notes</h6></li></ul></li><li><h6>Provide language guidance and document rendering options. All documents should be written in English. Available formatting for Colorado release is HTML and PDF format</h6></li><li><h6>Provide processes and tooling for OPNFV projects to implement and follow for consistency</h6></li></ul></li></ul><hr /><h4>Description of roles in the documentation project:</h4><ul><li><h6>Committers (Editors): has overall responsibility of document structure, editing, style and toolchains</h6></li><li><h6>opnfvdocs contributors: individual section will have contributors who are domain experts in those areas, other contributors may simply help out working on the documentation and tools as needed.</h6></li><li><h6>other projects: Committers will be responsible for maintaining documentation artifacts in project repositories.</h6></li></ul></ac:layout-cell><ac:layout-cell><p><br /></p><p><br /></p><p><br /></p></ac:layout-cell></ac:layout-section><ac:layout-section ac:type=\"single\"><ac:layout-cell><h2>Key Project Facts</h2><p><ac:structured-macro ac:name=\"view-git-file\" ac:schema-version=\"1\" ac:macro-id=\"930fd0f0-ae06-4ea8-9195-e4c9199b8ecd\"><ac:parameter ac:name=\"path\">INFO</ac:parameter><ac:parameter ac:name=\"repository-id\">117</ac:parameter><ac:parameter ac:name=\"language\">text</ac:parameter><ac:parameter ac:name=\"branch\">master</ac:parameter></ac:structured-macro></p><p>Additional contributors</p><ul><li>Bryan Sullivan (AT&T)</li><li>Trevor Cooper: <a href=\"mailto:[email protected]\">[email protected]</a></li><li>Victor Laza <a href=\"mailto:[email protected]\">[email protected]</a></li><li>Natasha Peters: <a href=\"mailto:[email protected]\">[email protected]</a></li><li>Bertrand Souville <a href=\"mailto:[email protected]\">[email protected]</a></li></ul><p><br /></p></ac:layout-cell></ac:layout-section><ac:layout-section ac:type=\"single\"><ac:layout-cell><p><br /></p></ac:layout-cell></ac:layout-section></ac:layout><ac:layout><ac:layout-section ac:type=\"two_right_sidebar\"><ac:layout-cell><p><br /></p><p><br /></p></ac:layout-cell><ac:layout-cell><p><br /></p></ac:layout-cell></ac:layout-section></ac:layout>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/5046514"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/opnfvdocs/OPNFV+Documentation",
"edit": "/pages/resumedraft.action?draftId=5046514",
"tinyui": "/x/8gBN",
"self": "https://wiki.opnfv.org/rest/api/content/5046514"
},
"_expandable": {
"container": "/rest/api/space/opnfvdocs",
"metadata": "",
"operations": "",
"children": "/rest/api/content/5046514/child",
"restrictions": "/rest/api/content/5046514/restriction/byOperation",
"descendants": "/rest/api/content/5046514/descendant",
"space": "/rest/api/space/opnfvdocs"
}
},
{
"id": "47284320",
"type": "page",
"status": "current",
"title": "Airship Agenda 20191024",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2019-10-24T14:11:44.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/47284320/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-24T14:16:56.000Z",
"message": "",
"number": 3,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/47284320/version/3"
},
"_expandable": {
"content": "/rest/api/content/47284320"
}
},
"ancestors": [
{
"id": "2925116",
"type": "page",
"status": "current",
"title": "Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Meetings",
"edit": "/pages/resumedraft.action?draftId=2925116",
"tinyui": "/x/PKIs",
"self": "https://wiki.opnfv.org/rest/api/content/2925116"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925116/child",
"restrictions": "/rest/api/content/2925116/restriction/byOperation",
"history": "/rest/api/content/2925116/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/2925116/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "8687665",
"type": "page",
"status": "current",
"title": "Project Team Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Project+Team+Meetings",
"edit": "/pages/resumedraft.action?draftId=8687665",
"tinyui": "/x/MZCE",
"self": "https://wiki.opnfv.org/rest/api/content/8687665"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/8687665/child",
"restrictions": "/rest/api/content/8687665/restriction/byOperation",
"history": "/rest/api/content/8687665/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/8687665/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "37684230",
"type": "page",
"status": "current",
"title": "Airship Installer Project Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Airship+Installer+Project+Meetings",
"edit": "/pages/resumedraft.action?draftId=37684230&draftShareId=2dc515b0-c036-41c8-a682-04d574a8de59",
"tinyui": "/x/BgQ-Ag",
"self": "https://wiki.opnfv.org/rest/api/content/37684230"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/37684230/child",
"restrictions": "/rest/api/content/37684230/restriction/byOperation",
"history": "/rest/api/content/37684230/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/37684230/descendant",
"space": "/rest/api/space/meetings"
}
}
],
"body": {
"storage": {
"value": "<p>Agenda of Airship Installer Project Meeting #7 at 6:00am PDT / 13:00 UTC on October 24, 2019 Thursday</p><ul><li>Roll Call</li><li>Admin Update<ul><li>None</li></ul></li><li>Project Update<ul><li>Pod 10 Deployment Status and Issues (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db0155105e86d000ba\" /><ac:plain-text-link-body><![CDATA[Sridhar Rao]]></ac:plain-text-link-body></ac:link>, <ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link>,Greg Oberfield)</li><li>Testing and Jenkins Setup (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db01550617373b00b4\" /><ac:plain-text-link-body><![CDATA[Cedric Ollivier]]></ac:plain-text-link-body></ac:link>)<ul><li>API Endpoint Issues (<ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link>)</li></ul></li><li><a style=\"text-decoration: none;\" href=\"https://wiki.opnfv.org/display/AIR/Airship+Installer+Deployment+Guide\">Documentation</a><span> </span>(<ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link> and Greg Oberfield)<ul><li>Consider to add SR-IOV Instructions Somewhere</li><li>OVS-DPDK is Not Ready</li></ul></li></ul></li><li>Introduction to Drools Testing and Demo (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db0155105e86d000ba\" /><ac:plain-text-link-body><![CDATA[Sridhar Rao]]></ac:plain-text-link-body></ac:link>)</li><li>Next Step<ul><li><a class=\"external-link\" href=\"https://github.com/cntt-n/cntt\" rel=\"nofollow\" style=\"text-decoration: none;\">CNTT Specs</a><span> </span>-<span> </span><a href=\"https://github.com/cntt-n/CNTT/tree/master/doc/ref_arch\" style=\"text-decoration: none;\" rel=\"nofollow\" class=\"external-link\">RA 1.0</a><span> </span>and<span> </span><a href=\"https://github.com/cntt-n/CNTT/tree/master/doc/ref_model\" style=\"text-decoration: none;\" class=\"external-link\" rel=\"nofollow\">RM 2.0</a></li></ul></li><li>AOB</li></ul>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/47284320"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Airship+Agenda+20191024",
"edit": "/pages/resumedraft.action?draftId=47284320&draftShareId=596d3460-d914-4910-8950-20fd3af53473",
"tinyui": "/x/YIDRAg",
"self": "https://wiki.opnfv.org/rest/api/content/47284320"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/47284320/child",
"restrictions": "/rest/api/content/47284320/restriction/byOperation",
"descendants": "/rest/api/content/47284320/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "47284322",
"type": "page",
"status": "current",
"title": "Airship Minutes 20191024",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2019-10-24T14:12:21.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/47284322/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-24T14:32:49.000Z",
"message": "",
"number": 2,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/47284322/version/2"
},
"_expandable": {
"content": "/rest/api/content/47284322"
}
},
"ancestors": [
{
"id": "2925116",
"type": "page",
"status": "current",
"title": "Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Meetings",
"edit": "/pages/resumedraft.action?draftId=2925116",
"tinyui": "/x/PKIs",
"self": "https://wiki.opnfv.org/rest/api/content/2925116"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925116/child",
"restrictions": "/rest/api/content/2925116/restriction/byOperation",
"history": "/rest/api/content/2925116/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/2925116/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "8687665",
"type": "page",
"status": "current",
"title": "Project Team Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Project+Team+Meetings",
"edit": "/pages/resumedraft.action?draftId=8687665",
"tinyui": "/x/MZCE",
"self": "https://wiki.opnfv.org/rest/api/content/8687665"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/8687665/child",
"restrictions": "/rest/api/content/8687665/restriction/byOperation",
"history": "/rest/api/content/8687665/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/8687665/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "37684230",
"type": "page",
"status": "current",
"title": "Airship Installer Project Meetings",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Airship+Installer+Project+Meetings",
"edit": "/pages/resumedraft.action?draftId=37684230&draftShareId=2dc515b0-c036-41c8-a682-04d574a8de59",
"tinyui": "/x/BgQ-Ag",
"self": "https://wiki.opnfv.org/rest/api/content/37684230"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/37684230/child",
"restrictions": "/rest/api/content/37684230/restriction/byOperation",
"history": "/rest/api/content/37684230/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/37684230/descendant",
"space": "/rest/api/space/meetings"
}
}
],
"body": {
"storage": {
"value": "<p>Minutes of Airship Installer Project Meeting #7 on October 24, 2019 Thursday</p><ul><li><code>Date and Time</code>: 6:00am PDT / UTC 13:00, October 24, 2019 Thursday</li><li><code>Participants</code>:<ul><li>Bin Hu (AT&T)</li><li><span style=\"color: rgb(23,43,77);\">Cedric Ollivier (Orange)</span></li><li><span style=\"color: rgb(23,43,77);\">Greg Oberfield (AT&T)</span></li><li><span style=\"color: rgb(23,43,77);\">Kaspars Skels (AT&T)</span></li><li><span style=\"color: rgb(23,43,77);\">Luc Provoost (Intel)</span></li><li><span style=\"color: rgb(23,43,77);\">Mark Shostak (AT&T)</span></li><li><span style=\"color: rgb(23,43,77);\">Mike Fix (AT&T)</span></li><li>Sridhar Rao (Spirent)</li></ul></li></ul><p><strong class=\"external-link\">IRC Minutes:<span> <a href=\"http://meetbot.opnfv.org/meetings/opnfv-meeting/2019/opnfv-meeting.2019-10-24-12.59.html\">http://meetbot.opnfv.org/meetings/opnfv-meeting/2019/opnfv-meeting.2019-10-24-12.59.html</a></span></strong></p><p><strong>Agenda</strong></p><ul><li>Roll Call</li><li>Admin Update<ul><li>None</li></ul></li><li>Project Update<ul><li>Pod 10 Deployment Status and Issues (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db0155105e86d000ba\" /><ac:plain-text-link-body><![CDATA[Sridhar Rao]]></ac:plain-text-link-body></ac:link>, <ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link>,Greg Oberfield)</li><li>Testing and Jenkins Setup (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db01550617373b00b4\" /><ac:plain-text-link-body><![CDATA[Cedric Ollivier]]></ac:plain-text-link-body></ac:link>)<ul><li>API Endpoint Issues (<ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link>)</li></ul></li><li><a href=\"https://wiki.opnfv.org/display/AIR/Airship+Installer+Deployment+Guide\" style=\"text-decoration: none;\" rel=\"nofollow\">Documentation</a><span> </span>(<ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016bdd4d32f90023\" /><ac:plain-text-link-body><![CDATA[Kaspars Skels]]></ac:plain-text-link-body></ac:link> and Greg Oberfield)<ul><li>Consider to add SR-IOV Instructions Somewhere</li><li>OVS-DPDK is Not Ready</li></ul></li></ul></li><li>Introduction to Drools Testing and Demo (<ac:link><ri:user ri:userkey=\"2c9e48d553c3b7db0155105e86d000ba\" /><ac:plain-text-link-body><![CDATA[Sridhar Rao]]></ac:plain-text-link-body></ac:link>)</li><li>Next Step<ul><li><a class=\"external-link\" rel=\"nofollow\" href=\"https://github.com/cntt-n/cntt\" style=\"text-decoration: none;\">CNTT Specs</a><span> </span>-<span> </span><a style=\"text-decoration: none;\" class=\"external-link\" href=\"https://github.com/cntt-n/CNTT/tree/master/doc/ref_arch\" rel=\"nofollow\">RA 1.0</a><span> </span>and<span> </span><a class=\"external-link\" href=\"https://github.com/cntt-n/CNTT/tree/master/doc/ref_model\" style=\"text-decoration: none;\" rel=\"nofollow\">RM 2.0</a></li></ul></li><li>AOB</li></ul><p><strong>Summary of Meeting</strong></p><ul><li><span class=\"INFO\">Regarding Pod 10 Deployment Status and Issues:</span><ul><li><span class=\"INFO\">98% UCP is up (except LMA).</span></li><li><span class=\"INFO\">Team is investigating the issues by looking into logs, and will suggest next step to move forward once the issue is identified.</span></li><li><span class=\"INFO\">Sridhar will meet with Luc on the needed support in Intel Lab.</span></li></ul></li><li>Regarding the issues of TCP ports in API endpoints URL of OpenStack, team will try 3 methods in parallel:<ul><li>Method 1: try OpenStack command line to remove TCP ports from API endpoint URLs as part of deploy.sh. This is interim, temporary workaround.</li><li>Method 2: communicate with PTL of OSH, and see how much effort it takes to fix it in OSH.</li><li>Method 3: check a pending patch in Tempest, and see if this new patch will fix this API endpoint issue in Tempest side or not.</li></ul></li><li>Regarding FuncTest maintenance:<ul><li>Airship 1.0 supports Ocata. Airship 2.0 is targeted for April, 2020 that will support the latest OpenStack version.</li><li>FuncTest needs to maintain the support of FuncTest Hunter for additional 6 months.</li></ul></li></ul><p><br /></p>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/47284322"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/meetings/Airship+Minutes+20191024",
"edit": "/pages/resumedraft.action?draftId=47284322&draftShareId=667d388f-b982-4b11-ad68-127971a9f67d",
"tinyui": "/x/YoDRAg",
"self": "https://wiki.opnfv.org/rest/api/content/47284322"
},
"_expandable": {
"container": "/rest/api/space/meetings",
"metadata": "",
"operations": "",
"children": "/rest/api/content/47284322/child",
"restrictions": "/rest/api/content/47284322/restriction/byOperation",
"descendants": "/rest/api/content/47284322/descendant",
"space": "/rest/api/space/meetings"
}
},
{
"id": "2925195",
"type": "page",
"status": "current",
"title": "Releng",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "mbeierl",
"userKey": "2c9e48d5521d22bb01521d2fd9110002",
"profilePicture": {
"path": "/download/attachments/1343490/user-avatar",
"width": 48,
"height": 48,
"isDefault": false
},
"displayName": "Mark Beierl",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d5521d22bb01521d2fd9110002"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2016-03-24T19:38:32.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/2925195/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "bramwelt",
"userKey": "2c9e48d553ae8c560153aec830940004",
"profilePicture": {
"path": "/download/attachments/3604485/user-avatar",
"width": 48,
"height": 48,
"isDefault": false
},
"displayName": "Trevor Bramwell",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553ae8c560153aec830940004"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-28T13:17:05.000Z",
"message": "",
"number": 6,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/2925195/version/6"
},
"_expandable": {
"content": "/rest/api/content/2925195"
}
},
"ancestors": [],
"body": {
"storage": {
"value": "<ac:layout><ac:layout-section ac:type=\"two_right_sidebar\"><ac:layout-cell><h1>Project: Release Engineering</h1><h2>Introduction</h2><p>The Release Engineering project provides automation, tooling and software infrastructure support for OPNFV projects to achieve E2E automation in order to make sure all repeating/day to day activities are run in automated fashion, the tools community relies on is up and running at all times, and release related activities are handled properly.</p><p>In short, Release Engineering project is a software development infrastructure project similar to <a href=\"http://docs.openstack.org/infra/\">OpenStack Infra</a> and can be seen as OPNFV Infra project.</p><p>The scope of Release Engineering project includes</p><ul><li>collecting requirements from all OPNFV projects regarding automation and tooling, analyzes, and realizes them</li><li>putting requirements on all OPNFV projects to make sure solutions are as common as possible to all projects</li><li>creating scripts and Jenkins jobs in order to automate what can be automated</li><li>evaluating and setting up, and maintaining the tools that are needed by the community</li><li>providing software infrastructure support with regards to tools, scripts, and Jenkins jobs</li><li>guiding OPNFV community with automation tasks</li><li>providing documentation</li></ul><p>Please see the <ac:link><ri:page ri:content-title=\"Release Engineering Project Proposal\" /></ac:link> for more details.</p><h2>Meetings</h2><p>Releng project does not have standing meetings. All the committers and contributors can be reached via IRC on different OPNFV channels.</p><h2>Way of Working</h2><p>A survey within Releng Team has been held in order to get input regarding the team logistics/WoW. The logistics/WoW is decided as below in order to keep things simple to start with.</p><ul><li>A change to releng repo must have at least one +2 from any committer but the owner before it can be submitted to master.</li><li>A change to releng repo can be submitted whenever it fulfills the submit rule above.</li><li>Releng Team meeting items are discussed as part of the <ac:link><ri:page ri:space-key=\"INF\" ri:content-title=\"Infra Working Group\" /><ac:plain-text-link-body><![CDATA[Infrastructure Work Group]]></ac:plain-text-link-body></ac:link>.</li><li>Releng Team uses #opnfv-octopus@Freenode chatroom for day to day communication/collaboration.</li></ul><p>Please see the survey results from <a href=\"https://www.surveymonkey.com/results/SM-RVY9SFFY/\">this link</a>.</p><h2>Contributions to OpenStack</h2><p>Releng Project has been contributing to OpenStack Infra in order to patch missing functionality and use it in OPNFV.</p><p>Please see the details and accepted/merged commits on below table.</p><table class=\"wrapped\"><tbody><tr><th><p>Component</p></th><th><p>Subject</p></th><th><p>Is in use by OPNFV?</p></th></tr><tr><td><p>Jenkins Job Builder</p></td><td><p><a href=\"https://review.openstack.org/\">Add support for forbidden file paths in gerrit trigger</a></p></td><td><p>Yes</p></td></tr><tr><td><p>Jenkins Job Builder</p></td><td><p><a href=\"https://review.openstack.org/\">Validate and set compare types in gerrit trigger</a></p></td><td><p>Yes</p></td></tr><tr><td><p>Jenkins Job Builder</p></td><td><p><a href=\"https://review.openstack.org/\">Add Google Cloud Storage Plugin support</a></p></td><td><p>No</p></td></tr><tr><td><p>Jenkins Job Builder</p></td><td><p><a href=\"https://review.openstack.org/\">Add Disable Failed Job Plugin support</a></p></td><td><p>No</p></td></tr><tr><td><p>Jenkins Job Builder</p></td><td><p><a href=\"https://review.openstack.org/\">Pass through git revision to triggered jobs</a></p></td><td><p>Yes</p></td></tr></tbody></table><h2>Key Project Facts</h2><p><ac:structured-macro ac:name=\"view-git-file\" ac:schema-version=\"1\" ac:macro-id=\"792c1fa8-ddcc-4e4b-bfa1-91917346010a\"><ac:parameter ac:name=\"path\">INFO</ac:parameter><ac:parameter ac:name=\"repository-id\">53</ac:parameter><ac:parameter ac:name=\"language\">text</ac:parameter><ac:parameter ac:name=\"branch\">master</ac:parameter></ac:structured-macro></p><p><strong>Contributors</strong>:</p><ul><li><a href=\"mailto:[email protected]\">[email protected]</a></li><li><a href=\"mailto:[email protected]\">[email protected]</a></li><li><a href=\"mailto:[email protected]\">[email protected]</a> </li><li><a href=\"mailto:[email protected]\">[email protected]</a> <a href=\"mailto:[email protected]\">[email protected]</a></li><li><a href=\"mailto:[email protected]\">[email protected]</a> <a href=\"mailto:[email protected]\">[email protected]</a> </li><li><a href=\"mailto:[email protected]\">[email protected]</a> <a href=\"mailto:[email protected]\">[email protected]</a> </li><li><a href=\"mailto:[email protected]\">[email protected]</a></li><li><a href=\"mailto:[email protected]\">[email protected]</a></li></ul></ac:layout-cell><ac:layout-cell><p><ac:structured-macro ac:name=\"toc\" ac:schema-version=\"1\" ac:macro-id=\"137990c6-ba91-40e0-892c-38262b334ce3\" /></p></ac:layout-cell></ac:layout-section></ac:layout>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/2925195"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/releng/Releng",
"edit": "/pages/resumedraft.action?draftId=2925195",
"tinyui": "/x/i6Is",
"self": "https://wiki.opnfv.org/rest/api/content/2925195"
},
"_expandable": {
"container": "/rest/api/space/releng",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925195/child",
"restrictions": "/rest/api/content/2925195/restriction/byOperation",
"descendants": "/rest/api/content/2925195/descendant",
"space": "/rest/api/space/releng"
}
},
{
"id": "47284365",
"type": "page",
"status": "current",
"title": "Tc Agenda 20191028",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2019-10-29T02:39:11.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/47284365/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-29T02:41:18.000Z",
"message": "",
"number": 3,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/47284365/version/3"
},
"_expandable": {
"content": "/rest/api/content/47284365"
}
},
"ancestors": [
{
"id": "2925118",
"type": "page",
"status": "current",
"title": "OPNFV",
"extensions": {
"position": 2
},
"_links": {
"webui": "/display/PROJ/OPNFV",
"edit": "/pages/resumedraft.action?draftId=2925118",
"tinyui": "/x/PqIs",
"self": "https://wiki.opnfv.org/rest/api/content/2925118"
},
"_expandable": {
"container": "/rest/api/space/PROJ",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925118/child",
"restrictions": "/rest/api/content/2925118/restriction/byOperation",
"history": "/rest/api/content/2925118/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/2925118/descendant",
"space": "/rest/api/space/PROJ"
}
},
{
"id": "2925877",
"type": "page",
"status": "current",
"title": "Weekly Technical Discussion",
"extensions": {
"position": 7
},
"_links": {
"webui": "/display/PROJ/Weekly+Technical+Discussion",
"edit": "/pages/resumedraft.action?draftId=2925877",
"tinyui": "/x/NaUs",
"self": "https://wiki.opnfv.org/rest/api/content/2925877"
},
"_expandable": {
"container": "/rest/api/space/PROJ",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925877/child",
"restrictions": "/rest/api/content/2925877/restriction/byOperation",
"history": "/rest/api/content/2925877/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/2925877/descendant",
"space": "/rest/api/space/PROJ"
}
},
{
"id": "50168149",
"type": "page",
"status": "current",
"title": "TC Agenda 2019",
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/PROJ/TC+Agenda+2019",
"edit": "/pages/resumedraft.action?draftId=50168149&draftShareId=366fb4c5-1644-40d7-be9f-95f7e3fa74cd",
"tinyui": "/x/VYH9Ag",
"self": "https://wiki.opnfv.org/rest/api/content/50168149"
},
"_expandable": {
"container": "/rest/api/space/PROJ",
"metadata": "",
"operations": "",
"children": "/rest/api/content/50168149/child",
"restrictions": "/rest/api/content/50168149/restriction/byOperation",
"history": "/rest/api/content/50168149/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/50168149/descendant",
"space": "/rest/api/space/PROJ"
}
}
],
"body": {
"storage": {
"value": "<p>Agenda of Technical Community Discussion on October 28, 2019</p><ul><li><span style=\"color: rgb(23,43,77);\">OPNFV Lab Infrastructure and CNTT-RI (</span><ac:link><ri:user ri:userkey=\"ff8080816dd5328d016dd7742c8d0000\" /><ac:plain-text-link-body><![CDATA[Jack Morgan]]></ac:plain-text-link-body></ac:link><span style=\"color: rgb(23,43,77);\">, </span><ac:link><ri:user ri:userkey=\"ff8080816a0cbb45016c95c3024c002f\" /><ac:plain-text-link-body><![CDATA[Mark Shostak]]></ac:plain-text-link-body></ac:link><span style=\"color: rgb(23,43,77);\">, Mike Fix etc.)</span><ul style=\"text-align: left;\"><li><a href=\"https://wiki.opnfv.org/display/INF/CNTT+Enablement\" style=\"text-decoration: none;\">CNTT Enablement</a><span> </span>discussion items</li></ul></li><li>AoB</li></ul>",
"representation": "storage",
"_expandable": {
"content": "/rest/api/content/47284365"
}
},
"_expandable": {
"editor": "",
"view": "",
"export_view": "",
"styled_view": "",
"anonymous_export_view": ""
}
},
"extensions": {
"position": "none"
},
"_links": {
"webui": "/display/PROJ/Tc+Agenda+20191028",
"edit": "/pages/resumedraft.action?draftId=47284365&draftShareId=a9bf736c-3978-4273-bfd0-52d2c858995f",
"tinyui": "/x/jYDRAg",
"self": "https://wiki.opnfv.org/rest/api/content/47284365"
},
"_expandable": {
"container": "/rest/api/space/PROJ",
"metadata": "",
"operations": "",
"children": "/rest/api/content/47284365/child",
"restrictions": "/rest/api/content/47284365/restriction/byOperation",
"descendants": "/rest/api/content/47284365/descendant",
"space": "/rest/api/space/PROJ"
}
},
{
"id": "47284367",
"type": "page",
"status": "current",
"title": "Tc Minutes 20191028",
"history": {
"latest": true,
"createdBy": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"createdDate": "2019-10-29T02:39:42.000Z",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/content/47284367/history"
},
"_expandable": {
"lastUpdated": "",
"previousVersion": "",
"contributors": "",
"nextVersion": ""
}
},
"version": {
"by": {
"type": "known",
"username": "bh526r",
"userKey": "2c9e48d553af6aa90153afe7fd570005",
"profilePicture": {
"path": "/images/icons/profilepics/default.svg",
"width": 48,
"height": 48,
"isDefault": true
},
"displayName": "Bin Hu",
"_links": {
"self": "https://wiki.opnfv.org/rest/api/user?key=2c9e48d553af6aa90153afe7fd570005"
},
"_expandable": {
"status": ""
}
},
"when": "2019-10-29T02:46:57.000Z",
"message": "",
"number": 3,
"minorEdit": false,
"hidden": false,
"_links": {
"self": "https://wiki.opnfv.org/rest/experimental/content/47284367/version/3"
},
"_expandable": {
"content": "/rest/api/content/47284367"
}
},
"ancestors": [
{
"id": "2925118",
"type": "page",
"status": "current",
"title": "OPNFV",
"extensions": {
"position": 2
},
"_links": {
"webui": "/display/PROJ/OPNFV",
"edit": "/pages/resumedraft.action?draftId=2925118",
"tinyui": "/x/PqIs",
"self": "https://wiki.opnfv.org/rest/api/content/2925118"
},
"_expandable": {
"container": "/rest/api/space/PROJ",
"metadata": "",
"operations": "",
"children": "/rest/api/content/2925118/child",
"restrictions": "/rest/api/content/2925118/restriction/byOperation",
"history": "/rest/api/content/2925118/history",
"ancestors": "",
"body": "",
"version": "",
"descendants": "/rest/api/content/2925118/descendant",
"space": "/rest/api/space/PROJ"
}
},