-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudmap.yaml
More file actions
1121 lines (1121 loc) · 46.9 KB
/
cloudmap.yaml
File metadata and controls
1121 lines (1121 loc) · 46.9 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
# This CloudMap is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. Any rights in individual contents of the database are licensed under the Database Contents License: http://opendatacommons.org/licenses/dbcl/1.0/
# SPDX-License-Identifier: ODbL-1.0
apiVersion: unfurl/v1alpha1
kind: CloudMap
repositories:
unfurl.cloud/onecommons/blueprints/baserow:
git: unfurl.cloud/onecommons/blueprints/baserow.git
path: onecommons/blueprints/baserow
name: Baserow
protocols:
- https
- ssh
internal_id: '93'
project_url: https://unfurl.cloud/onecommons/blueprints/baserow
metadata:
description: Baserow is an open source no-code database and Airtable alternative
that enables users without technical experience to create their own online
database.
issues_url: https://unfurl.cloud/onecommons/blueprints/baserow/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/baserow
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/93/avatar.png
default_branch: main
branches:
main: f3d902ae0ec52d4f869f8dbeb0c6438eeeb83030
tags:
v1.0.0: f3d902ae0ec52d4f869f8dbeb0c6438eeeb83030
v0.1.0: 4aeddf5a42a3dccfcf809b69517b342aa7ab9d9c
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Baserow
version: 0.1
description: Baserow is an Open source no-code database and Airtable alternative
that enables users without technical experience to create their own online
database.
type:
name: Baserow@unfurl.cloud/onecommons/blueprints/baserow
title: Baserow
extends:
- Baserow@unfurl.cloud/onecommons/blueprints/baserow
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- SMTPServer@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/baserow/baserow
unfurl.cloud/onecommons/blueprints/cachet:
git: unfurl.cloud/onecommons/blueprints/cachet.git
path: onecommons/blueprints/cachet
name: Cachet
protocols:
- https
- ssh
internal_id: '505'
project_url: https://unfurl.cloud/onecommons/blueprints/cachet
metadata:
description: An open source status page system for everyone.
issues_url: https://unfurl.cloud/onecommons/blueprints/cachet/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/cachet
avatar_url: https://unfurl.cloud/onecommons/blueprints/cachet/-/avatar
default_branch: main
branches:
main: 2da68fe0d1014805d15fc9134352626cb136e066
tags:
v1.0.0: 2da68fe0d1014805d15fc9134352626cb136e066
v0.1.0: a82b80efe8c4f6e1ecd535747b4b6a530d4872ff
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Cachet
version: '0.1'
description: An open source status page system for everyone.
type:
name: CachetApp@unfurl.cloud/onecommons/blueprints/cachet
title: CachetApp
extends:
- CachetApp@unfurl.cloud/onecommons/blueprints/cachet
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- PostgresDB@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/cachethq/docker
unfurl.cloud/onecommons/blueprints/container-webapp:
git: unfurl.cloud/onecommons/blueprints/container-webapp.git
path: onecommons/blueprints/container-webapp
name: Container Webapp
protocols:
- https
- ssh
internal_id: '274'
project_url: https://unfurl.cloud/onecommons/blueprints/container-webapp
metadata:
issues_url: https://unfurl.cloud/onecommons/blueprints/container-webapp/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/container-webapp
default_branch: main
branches:
main: e68daad5be7e4c3b4eb670a78da4cc739f368da8
mar31a: 40ab0d91451ca92313c1c1abd480fb3e29b8bf79
tags:
v1.0.0: 6da27daea9ba5d7beb6de33990f642223124453b
v0.1.0: c59239a24de926eb94ca168f9bfdaa3ae4867f87
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Container Webapp
version: 0.1
type:
name: GenericContainerApp@unfurl.cloud/onecommons/blueprints/container-webapp
title: GenericContainerApp
extends:
- GenericContainerApp@unfurl.cloud/onecommons/blueprints/container-webapp
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
unfurl.cloud/onecommons/blueprints/cronicle:
git: unfurl.cloud/onecommons/blueprints/cronicle.git
path: onecommons/blueprints/cronicle
name: Cronicle
protocols:
- https
- ssh
internal_id: '504'
project_url: https://unfurl.cloud/onecommons/blueprints/cronicle
metadata:
description: A simple, distributed task scheduler and runner with a web based
UI.
issues_url: https://unfurl.cloud/onecommons/blueprints/cronicle/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/cronicle
avatar_url: https://unfurl.cloud/onecommons/blueprints/cronicle/-/avatar
default_branch: main
branches:
main: c927e49f0fa1bc6c957cc16ca9d554b46d1abe73
tags:
v1.0.0: c927e49f0fa1bc6c957cc16ca9d554b46d1abe73
v0.1.0: 2f9288e491d47ab0d976c135a5a17475bc9c746a
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Cronicle
version: '0.1'
description: A simple, distributed task scheduler and runner with a web based
UI.
type:
name: CronicleApp@unfurl.cloud/onecommons/blueprints/cronicle
title: CronicleApp
extends:
- CronicleApp@unfurl.cloud/onecommons/blueprints/cronicle
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
artifacts:
- docker.io/soulteary/cronicle
unfurl.cloud/onecommons/blueprints/discourse:
git: unfurl.cloud/onecommons/blueprints/discourse.git
path: onecommons/blueprints/discourse
name: Discourse
protocols:
- https
- ssh
internal_id: '34'
project_url: https://unfurl.cloud/onecommons/blueprints/discourse
metadata:
description: "Discourse is the 100% open source discussion platform built for\
\ the next decade of the internet. Use it as a mailing list, discussion forum,\
\ long-form chat room, and more!\r\n"
issues_url: https://unfurl.cloud/onecommons/blueprints/discourse/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/discourse
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/34/discourse.png
default_branch: main
branches:
main: 17d70062363525493a7dc78c82a8f8dd7c7e5289
tags:
v1.0.0: 17d70062363525493a7dc78c82a8f8dd7c7e5289
v0.1.0: b4f81fa1e4f7845203020c4678c6fca4c4b9c34f
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Discourse
version: '0.1'
description: Discourse is the 100% open source discussion platform built for
the next decade of the Internet. Use it as a mailing list, discussion forum,
long-form chat room, and more!
type:
name: DiscourseApp@unfurl.cloud/onecommons/blueprints/discourse
title: DiscourseApp
extends:
- DiscourseApp@unfurl.cloud/onecommons/blueprints/discourse
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- PostgresDB@unfurl.cloud/onecommons/std:generic_types
- Redis@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/docker.io/bitnami/discourse
unfurl.cloud/onecommons/blueprints/drupal:
git: unfurl.cloud/onecommons/blueprints/drupal.git
path: onecommons/blueprints/drupal
name: Drupal
protocols:
- https
- ssh
internal_id: '38'
project_url: https://unfurl.cloud/onecommons/blueprints/drupal
metadata:
description: Drupal is a free and open-source web content management system
written in PHP and distributed under the GNU General Public License.
issues_url: https://unfurl.cloud/onecommons/blueprints/drupal/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/drupal
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/38/avatar.png
default_branch: main
branches:
main: ffca5c723863bdd9c38794be19aecf2590c14dfa
tags:
v1.0.0: e62bb8be58bdbad109ff8583f787442ca222bf5e
v0.1.0: 75635887634d0c4492cf63ace18c78c3e1259bb9
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Drupal
version: 0.1
schema: https://unfurl.cloud/onecommons/unfurl-types#v0.7.6
type:
name: Drupal@unfurl.cloud/onecommons/blueprints/drupal
title: Drupal
extends:
- Drupal@unfurl.cloud/onecommons/blueprints/drupal
- unfurl.nodes.SQLWebApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.ContainerApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.App@unfurl.cloud/onecommons/unfurl-types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- MySQLDB@unfurl.cloud/onecommons/unfurl-types
artifacts:
- docker.io/bitnami/drupal
unfurl.cloud/onecommons/blueprints/etherpad:
git: unfurl.cloud/onecommons/blueprints/etherpad.git
path: onecommons/blueprints/etherpad
name: Etherpad
protocols:
- https
- ssh
internal_id: '506'
project_url: https://unfurl.cloud/onecommons/blueprints/etherpad
metadata:
description: Etherpad is a real-time collaborative editor for the web
issues_url: https://unfurl.cloud/onecommons/blueprints/etherpad/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/etherpad
avatar_url: https://unfurl.cloud/onecommons/blueprints/etherpad/-/avatar
default_branch: main
branches:
main: 93ef51ef36d7d75af131ab9c4221a0031ee39832
tags:
v1.0.0: 93ef51ef36d7d75af131ab9c4221a0031ee39832
v0.1.0: 9e560cfa0262467efc0db148eb470486f5a224be
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Etherpad
version: '0.1'
description: Etherpad is a real-time collaborative editor for the web
type:
name: EtherpadApp@unfurl.cloud/onecommons/blueprints/etherpad
title: EtherpadApp
extends:
- EtherpadApp@unfurl.cloud/onecommons/blueprints/etherpad
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- MySQLDB@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/etherpad/etherpad
unfurl.cloud/onecommons/blueprints/ghost:
git: unfurl.cloud/onecommons/blueprints/ghost.git
path: onecommons/blueprints/ghost
name: Ghost
protocols:
- https
- ssh
internal_id: '40'
project_url: https://unfurl.cloud/onecommons/blueprints/ghost
metadata:
description: Ghost is a free and open source blogging platform written in JavaScript
and distributed under the MIT License, designed to simplify the process of
online publishing for individual bloggers as well as online publications.
issues_url: https://unfurl.cloud/onecommons/blueprints/ghost/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/ghost
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/40/avatar.png
default_branch: main
branches:
jg-changes: 830664742e265e0765325ad2f4521d71be39f84f
main: 76e30bbe5d4a5de6e301ffae02a8138a8ca9057c
tags:
v1.0.0: 76e30bbe5d4a5de6e301ffae02a8138a8ca9057c
v0.1.0: b7bdc4762e74ed4a33ad23d4d895a96d35523c94
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Ghost
version: 0.1
description: Ghost is a free and open source CMS blogging platform with a
rich editor and powerful customization.
type:
name: GhostCMS@unfurl.cloud/onecommons/blueprints/ghost
title: GhostCMS
extends:
- GhostCMS@unfurl.cloud/onecommons/blueprints/ghost
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- SMTPServer@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/ghost
unfurl.cloud/onecommons/blueprints/gogs:
git: unfurl.cloud/onecommons/blueprints/gogs.git
path: onecommons/blueprints/gogs
name: Gogs
protocols:
- https
- ssh
internal_id: '96'
project_url: https://unfurl.cloud/onecommons/blueprints/gogs
metadata:
description: Gogs is a painless self-hosted Git service. This project aims to
build a simple, stable and extensible self-hosted Git service that can be
setup in the most painless way.
issues_url: https://unfurl.cloud/onecommons/blueprints/gogs/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/gogs
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/96/avatar.png
default_branch: main
branches:
main: 92bc7ad5e140772ff974c78cbb6abe4b10a7af8d
tags:
v1.0.0: 92bc7ad5e140772ff974c78cbb6abe4b10a7af8d
v0.1.0: a1b74202eb422fdec13eaf3ab15886f587247458
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Gogs
version: 0.1
description: "Gogs is a simple, stable, and extensible self-hosted Git service.\
\ Setup is painless and supports every platform\nthat Go does, including\
\ Linux, macOS, Windows and ARM."
type:
name: Gogs@unfurl.cloud/onecommons/blueprints/gogs
title: Gogs
extends:
- Gogs@unfurl.cloud/onecommons/blueprints/gogs
- unfurl.nodes.SQLWebApp@unfurl.cloud/onecommons/std:generic_types
- SQLWebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- MySQLDB@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/gogs/gogs
unfurl.cloud/onecommons/blueprints/kubernetes-chores:
git: unfurl.cloud/onecommons/blueprints/kubernetes-chores.git
path: onecommons/blueprints/kubernetes-chores
name: kubernetes-chores
protocols:
- https
- ssh
internal_id: '236'
project_url: https://unfurl.cloud/onecommons/blueprints/kubernetes-chores
metadata:
description: A collection of admin chores for your Kubernetes cluster.
issues_url: https://unfurl.cloud/onecommons/blueprints/kubernetes-chores/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/kubernetes-chores
default_branch: main
branches:
main: bdec2319f76f218f61eaaa963d659ad595f32f1a
tags:
v1.0.0: bdec2319f76f218f61eaaa963d659ad595f32f1a
v0.1.0: 00b5932f0ebabb6c07550d90a7f5bc2725aaf7f4
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Kubernetes Admin Chores
version: 0.1
type:
name: GKEClusterAdmin@unfurl.cloud/onecommons/blueprints/kubernetes-chores
title: GKEClusterAdmin
extends:
- GKEClusterAdmin@unfurl.cloud/onecommons/blueprints/kubernetes-chores
- ClusterAdmin@unfurl.cloud/onecommons/blueprints/kubernetes-chores
- K8sServiceAccount@unfurl.cloud/onecommons/blueprints/kubernetes-chores
- unfurl.nodes.Installer.Terraform@unfurl:tosca_plugins/artifacts
- unfurl.nodes.Installer
- tosca.nodes.Root
- unfurl.capabilities.Installer
- tosca.capabilities.Root
- tosca.capabilities.Node
implementations:
- check
- configure
- default
- delete
unfurl.cloud/onecommons/blueprints/magento:
git: unfurl.cloud/onecommons/blueprints/magento.git
path: onecommons/blueprints/magento
name: Magento
protocols:
- https
- ssh
internal_id: '39'
project_url: https://unfurl.cloud/onecommons/blueprints/magento
metadata:
description: Magento is an open-source e-commerce platform written in PHP. It
uses multiple other PHP frameworks such as Laminas and Symfony. Magento source
code is distributed under Open Software License v3.0.
issues_url: https://unfurl.cloud/onecommons/blueprints/magento/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/magento
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/39/avatar.png
default_branch: main
branches:
main: bf4c231a85bf3b014904fa1b8a7af84a3e8b8747
tags:
v1.0.0: ec59fed01f65dc4c181f66982d23783af04540f8
v0.1.0: 882bc0c3307fa173ee9cbd217f54bb9ca85e2dc3
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Magento
version: 0.1
schema: https://unfurl.cloud/onecommons/unfurl-types
type:
name: Magento@unfurl.cloud/onecommons/blueprints/magento
title: Magento
extends:
- Magento@unfurl.cloud/onecommons/blueprints/magento
- unfurl.nodes.SQLWebApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.ContainerApp@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.App@unfurl.cloud/onecommons/unfurl-types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- MySQLDB@unfurl.cloud/onecommons/unfurl-types
artifacts:
- docker.io/bitnami/drupal
unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0:
git: unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0.git
path: onecommons/blueprints/mattermost-entreprise-edition-e0
name: Mattermost Entreprise Edition E0
protocols:
- https
- ssh
internal_id: '503'
project_url: https://unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0
metadata:
description: Mattermost Team Edition open source collaboration/chat software
issues_url: https://unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0
avatar_url: https://unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0/-/avatar
default_branch: main
branches:
main: a981dae2678978fc14171158652e152af5055dc7
tags:
v1.0.0: a981dae2678978fc14171158652e152af5055dc7
v0.1.0: d9727a5fec198bcfa7ef274fc47a22f3bfb48221
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Mattermost Entreprise Edition E0
version: '0.1'
description: Mattermost Team Edition open source collaboration/chat software
type:
name: MattermostEntrepriseEditionE0App@unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0
title: MattermostEntrepriseEditionE0App
extends:
- MattermostEntrepriseEditionE0App@unfurl.cloud/onecommons/blueprints/mattermost-entreprise-edition-e0
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- PostgresDB@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/mattermost/mattermost-enterprise-edition
unfurl.cloud/onecommons/blueprints/mediawiki:
git: unfurl.cloud/onecommons/blueprints/mediawiki.git
path: onecommons/blueprints/mediawiki
name: MediaWiki
protocols:
- https
- ssh
internal_id: '35'
project_url: https://unfurl.cloud/onecommons/blueprints/mediawiki
metadata:
description: MediaWiki is free and open-source wiki software used in Wikipedia,
Wiktionary, and many other online encyclopedias.
issues_url: https://unfurl.cloud/onecommons/blueprints/mediawiki/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/mediawiki
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/35/avatar.png
default_branch: main
branches:
main: 0fc60cb3afd06ae2c4abe038007e9ff4db398662
tags:
v1.0.0: 0fc60cb3afd06ae2c4abe038007e9ff4db398662
v0.1.0: 225932bc2a45473d682e48f272bc48fcd83909bb
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Mediawiki
version: 0.1
description: MediaWiki is free and open-source wiki software used in Wikipedia,
Wiktionary, and many other online encyclopedias.
type:
name: Mediawiki@unfurl.cloud/onecommons/blueprints/mediawiki
title: Mediawiki
extends:
- Mediawiki@unfurl.cloud/onecommons/blueprints/mediawiki
- unfurl.nodes.SQLWebApp@unfurl.cloud/onecommons/std:generic_types
- SQLWebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- MySQLDB@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/bitnami/mediawiki
unfurl.cloud/onecommons/blueprints/memos:
git: unfurl.cloud/onecommons/blueprints/memos.git
path: onecommons/blueprints/memos
name: Memos
protocols:
- https
- ssh
internal_id: '507'
project_url: https://unfurl.cloud/onecommons/blueprints/memos
metadata:
description: "An open-source, self-hosted memo hub with knowledge management\
\ and socialization.\r\n"
issues_url: https://unfurl.cloud/onecommons/blueprints/memos/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/memos
avatar_url: https://unfurl.cloud/onecommons/blueprints/memos/-/avatar
default_branch: main
branches:
main: 7b4f68273f864f533ac34cce2e20e6cf8af6e30d
tags:
v1.0.0: 7b4f68273f864f533ac34cce2e20e6cf8af6e30d
v0.1.0: e01875f486a3a2c14c9e728069ea166716ec46f2
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Memos
version: '0.1'
description: An open-source, self-hosted memo hub with knowledge management
and socialization.
type:
name: MemosApp@unfurl.cloud/onecommons/blueprints/memos
title: MemosApp
extends:
- MemosApp@unfurl.cloud/onecommons/blueprints/memos
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
artifacts:
- docker.io/neosmemo/memos
unfurl.cloud/onecommons/blueprints/minecraft:
git: unfurl.cloud/onecommons/blueprints/minecraft.git
path: onecommons/blueprints/minecraft
name: Minecraft
protocols:
- https
- ssh
internal_id: '32'
project_url: https://unfurl.cloud/onecommons/blueprints/minecraft
metadata:
description: A Minecraft Server that will automatically download the latest
stable version at startup.
issues_url: https://unfurl.cloud/onecommons/blueprints/minecraft/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/minecraft
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/32/avatar.png
default_branch: main
branches:
main: 0d02cf5bb68d3828d687b0be7ec3ef64f715b957
tags:
v1.0.0: 0d02cf5bb68d3828d687b0be7ec3ef64f715b957
v0.1.0: f1ef6dcd27822413b958c0231fb9c1089909f69f
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Minecraft
version: 0.1
description: A Minecraft Server that will automatically download the latest
stable version at startup.
type:
name: Minecraft@unfurl.cloud/onecommons/blueprints/minecraft
title: Minecraft
extends:
- Minecraft@unfurl.cloud/onecommons/blueprints/minecraft
- unfurl.nodes.ContainerApp@unfurl.cloud/onecommons/std:generic_types
- ContainerApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
artifacts:
- docker.io/itzg/minecraft-server
unfurl.cloud/onecommons/blueprints/mod9:
git: unfurl.cloud/onecommons/blueprints/mod9.git
path: onecommons/blueprints/mod9
name: Mod9 ASR Engine
protocols:
- https
- ssh
internal_id: '95'
project_url: https://unfurl.cloud/onecommons/blueprints/mod9
metadata:
description: The Mod9 ASR Engine consists of a Linux server, along with compatible
models and support software, that enables clients to send commands and audio
over a network and receive the written transcript of what was said in the
audio.
issues_url: https://unfurl.cloud/onecommons/blueprints/mod9/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/mod9
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/95/avatar.png
default_branch: main
branches:
main: 6019182ed56946646ec30073464b30e6cc4fd36d
notable:
ensemble-template.yaml:
artifact_type: artifact.tosca.ServiceTemplate
name: Mod9
version: 0.1
description: The Mod9 ASR Engine consists of a Linux server, along with compatible
models and support software, that enables clients to send commands and audio
over a network and receive the written transcript of what was said in the
audio.
schema: https://gitlab.com/onecommons/unfurl-types#v0.6.3
type:
name: Mod9
title: Mod9
description: The Mod9 ASR Engine consists of a Linux server, along with
compatible models and support software, that enables clients to send commands
and audio over a network and receive the written transcript of what was
said in the audio.
extends:
- Mod9
- unfurl.nodes.WebApp
- unfurl.nodes.ContainerApp
- unfurl.nodes.App
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- unfurl.nodes.Compute
artifacts:
- docker.io/mod9/asr
unfurl.cloud/onecommons/blueprints/nextcloud:
git: unfurl.cloud/onecommons/blueprints/nextcloud.git
path: onecommons/blueprints/nextcloud
initial_revision: 8994cad47ca56349e068dc3fc95b3224ed47ae93
name: Nextcloud
protocols:
- https
- ssh
internal_id: '111'
project_url: https://unfurl.cloud/onecommons/blueprints/nextcloud
metadata:
description: A safe home for all your data. Access & share your files, calendars,
contacts, mail & more from any device, on your terms.
issues_url: https://unfurl.cloud/onecommons/blueprints/nextcloud/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/nextcloud
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/111/avatar.png
default_branch: main
branches:
dsl: 21d93f78fd9f06bb21e120071632c75b3f62ebc3
main: cf34ceb31eb4a4ab801d276582dd3e1e48637cf7
tags:
v1.0.0: cf34ceb31eb4a4ab801d276582dd3e1e48637cf7
v0.1.0: 951d9ef755483ee63be036501a0377bf82fdbc36
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Nextcloud
version: 0.1
description: A safe home for all your data. Access & share your files, calendars,
contacts, mail & more from any device, on your terms.
type:
name: Nextcloud@unfurl.cloud/onecommons/blueprints/nextcloud
title: Nextcloud
extends:
- Nextcloud@unfurl.cloud/onecommons/blueprints/nextcloud
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
artifacts:
- docker.io/nextcloud
unfurl.cloud/onecommons/blueprints/nginx:
git: unfurl.cloud/onecommons/blueprints/nginx.git
path: onecommons/blueprints/nginx
initial_revision: 0e2d873fa44f04630abc531c3114de15e3502401
name: NGINX
protocols:
- https
- ssh
internal_id: '44'
project_url: https://unfurl.cloud/onecommons/blueprints/nginx
metadata:
description: NGINX Open Source is a web server that can be also used as a reverse
proxy, load balancer, and HTTP cache. Recommended for high-demanding sites
due to its ability to provide faster content.
issues_url: https://unfurl.cloud/onecommons/blueprints/nginx/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/nginx
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/44/nginx-avatar.png
default_branch: main
branches:
main: 4bf4e69e306efbf4b21412fa49e9a171b356ea22
tags:
v1.0.0: 4bf4e69e306efbf4b21412fa49e9a171b356ea22
v0.1.0: 08f3193f04c2e4ac3979cddf001f132ecab1389a
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: NGINX
version: 0.1
type:
name: NGINX@unfurl.cloud/onecommons/blueprints/nginx
title: NGINX
extends:
- NGINX@unfurl.cloud/onecommons/blueprints/nginx
- unfurl.nodes.DockerComputeHost@unfurl.cloud/onecommons/std:generic_types
- DockerComputeHost@unfurl.cloud/onecommons/std:generic_types
- ContainerComputeHost@unfurl.cloud/onecommons/std:generic_types
- ContainerHost@unfurl.cloud/onecommons/std:generic_types
- ServiceHost@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
implementations:
- configure
implementation_requirements:
- unfurl.relationships.ConnectsTo.ComputeMachines
dependencies:
- Compute@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/bitnami/nginx
unfurl.cloud/onecommons/blueprints/odoo:
git: unfurl.cloud/onecommons/blueprints/odoo.git
path: onecommons/blueprints/odoo
name: Odoo
protocols:
- https
- ssh
internal_id: '37'
project_url: https://unfurl.cloud/onecommons/blueprints/odoo
metadata:
description: Odoo is a suite of business management software tools including
CRM, e-commerce, billing, accounting, manufacturing, warehouse, project management,
and inventory management. The Community version is a libre software, licensed
under the GNU LGPLv3.
issues_url: https://unfurl.cloud/onecommons/blueprints/odoo/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/odoo
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/37/avatar.png
default_branch: main
branches:
main: ce8f368b18f111c3afec3d5e3ceb40a2bb02095d
tags:
v1.0.0: 2e57b3251bd9f8e292385b9f31774f6408abc4d7
v0.1.0: be0da659d7358bc4d24d988f436a5508e098b252
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Odoo
version: 0.1
schema: https://unfurl.cloud/onecommons/unfurl-types
type:
name: Odoo@unfurl.cloud/onecommons/blueprints/odoo
title: Odoo
extends:
- Odoo@unfurl.cloud/onecommons/blueprints/odoo
- unfurl.nodes.SoftwareService@unfurl.cloud/onecommons/unfurl-types
- unfurl.nodes.SoftwareComponent@unfurl.cloud/onecommons/unfurl-types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- PostgresDB@unfurl.cloud/onecommons/unfurl-types
artifacts:
- docker.io/bitnami/odoo
unfurl.cloud/onecommons/blueprints/openvscode-server:
git: unfurl.cloud/onecommons/blueprints/openvscode-server.git
path: onecommons/blueprints/openvscode-server
name: OpenVSCode Server
protocols:
- https
- ssh
internal_id: '502'
project_url: https://unfurl.cloud/onecommons/blueprints/openvscode-server
metadata:
description: "A version of VS Code that runs a server on a remote machine and\
\ allows access through a modern web browser.\r\n"
issues_url: https://unfurl.cloud/onecommons/blueprints/openvscode-server/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/openvscode-server
avatar_url: https://unfurl.cloud/onecommons/blueprints/openvscode-server/-/avatar
default_branch: main
branches:
main: ccc222103d8f0b6a913a585e3afe521be0612817
tags:
v1.0.0: ccc222103d8f0b6a913a585e3afe521be0612817
v0.1.0: a8a1d881bae004f42afc518ae88fa72bcd1174ac
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Openvscode Server
version: '0.1'
description: A version of VS Code that runs a server on a remote machine and
allows access through a modern web browser.
type:
name: OpenvscodeServerApp@unfurl.cloud/onecommons/blueprints/openvscode-server
title: OpenvscodeServerApp
extends:
- OpenvscodeServerApp@unfurl.cloud/onecommons/blueprints/openvscode-server
- unfurl.nodes.WebApp@unfurl.cloud/onecommons/std:generic_types
- WebApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
artifacts:
- lscr.io/lscr.io/linuxserver/openvscode-server
unfurl.cloud/onecommons/blueprints/unfurl-server:
git: unfurl.cloud/onecommons/blueprints/unfurl-server.git
path: onecommons/blueprints/unfurl-server
name: unfurl-server
protocols:
- https
- ssh
internal_id: '416'
project_url: https://unfurl.cloud/onecommons/blueprints/unfurl-server
metadata:
issues_url: https://unfurl.cloud/onecommons/blueprints/unfurl-server/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/unfurl-server
default_branch: main
branches:
main: 7b336130bac344db934a4bb1e147af27ae37e27e
tags:
v1.0.0: 7b336130bac344db934a4bb1e147af27ae37e27e
v0.1.0: 846da315e6d36748a141bf13cba1fe6068b02fc3
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: Unfurl Server Service
description: unfurl as a service
type:
name: UnfurlServerApp@unfurl.cloud/onecommons/blueprints/unfurl-server
title: UnfurlServerApp
extends:
- UnfurlServerApp@unfurl.cloud/onecommons/blueprints/unfurl-server
- unfurl.nodes.APIServiceApp@unfurl.cloud/onecommons/std:generic_types
- APIServiceApp@unfurl.cloud/onecommons/std:generic_types
- _ContainerAppBase@unfurl.cloud/onecommons/std:generic_types
- App@unfurl.cloud/onecommons/std:generic_types
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
dependencies:
- Redis@unfurl.cloud/onecommons/std:generic_types
artifacts:
- docker.io/{{ root.app.unfurl_container_image }}
unfurl.cloud/onecommons/blueprints/wireguard:
git: unfurl.cloud/onecommons/blueprints/wireguard.git
path: onecommons/blueprints/wireguard
name: WireGuard
protocols:
- https
- ssh
internal_id: '33'
project_url: https://unfurl.cloud/onecommons/blueprints/wireguard
metadata:
description: WireGuard is a communication protocol and free and open-source
software that implements encrypted virtual private networks.
issues_url: https://unfurl.cloud/onecommons/blueprints/wireguard/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/wireguard
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/33/avatar.png
default_branch: main
branches:
main: cb17d2e38802f9fedf71472ac3cb3bf46d2fbfe1
primary-deployment-blueprint: ecafbe75f5376f9eb0a97f545bc9df0efe27f88f
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: WireGuard
version: 0.1
schema: https://gitlab.com/onecommons/unfurl-types#v0.6.3
type:
name: WireGuard
title: WireGuard
extends:
- WireGuard
- unfurl.nodes.DockerComputeHost
- unfurl.nodes.ContainerComputeHost
- unfurl.nodes.DockerHost
- unfurl.nodes.ServiceHost
- tosca.nodes.Root
- tosca.capabilities.Node
- tosca.capabilities.Root
implementations:
- configure
- create
dependencies:
- unfurl.nodes.Compute
artifacts:
- lscr.io/lscr.io/linuxserver/wireguard
unfurl.cloud/onecommons/blueprints/wordpress:
git: unfurl.cloud/onecommons/blueprints/wordpress.git
path: onecommons/blueprints/wordpress
name: WordPress
protocols:
- https
- ssh
internal_id: '36'
project_url: https://unfurl.cloud/onecommons/blueprints/wordpress
metadata:
description: WordPress is a open-source content-management system written in
PHP, commonly used to create websites and blogs. WordPress is extremely customizable,
with a large community of plugins and themes to design your site just the
way you want it!
issues_url: https://unfurl.cloud/onecommons/blueprints/wordpress/-/issues
homepage_url: https://unfurl.cloud/onecommons/blueprints/wordpress
avatar_url: https://unfurl.cloud/uploads/-/system/project/avatar/36/avatar.png
default_branch: main
branches:
jg-changes: ecae7112fbb6fc1b9902b1116081a0a4aeeea5ab
main: 853cc4536d15a0c0949d2d555636a48c0b8960ef
tags:
v1.0.0: 853cc4536d15a0c0949d2d555636a48c0b8960ef
v0.1.0: 24ef05c80a41b888018a5f279e9705c2dfa4956e
notable:
ensemble-template.yaml#spec/service_template:
artifact_type: artifact.tosca.ServiceTemplate
name: WordPress
version: 0.1
description: WordPress is an powerful open-source website creation tool written
in PHP and makes setting up a blog or website extremely simple.
type:
name: WordPress@unfurl.cloud/onecommons/blueprints/wordpress
title: WordPress
extends:
- WordPress@unfurl.cloud/onecommons/blueprints/wordpress
- unfurl.nodes.SQLWebApp@unfurl.cloud/onecommons/std:generic_types