-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathfablo-config-hlf2-2orgs-2chaincodes-raft.yaml.test.ts.snap
5537 lines (4952 loc) · 228 KB
/
fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.test.ts.snap
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/.gitignore from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"/config
/crypto-config
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/configtx.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"################################################################################
# SECTION: Capabilities
################################################################################
Capabilities:
Channel: &ChannelCapabilities
V2_0: true
Orderer: &OrdererCapabilities
V2_0: true
Application: &ApplicationCapabilities
V2_0: true
################################################################################
# CHANNEL Defaults
################################################################################
Channel: &ChannelDefaults
Policies:
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
Capabilities:
<<: *ChannelCapabilities
################################################################################
# Section: Organizations
################################################################################
Organizations:
- &Orderer1
Name: Orderer1MSP
ID: Orderer1MSP
MSPDir: crypto-config/peerOrganizations/orderer1.com/msp
Policies:
Readers:
Type: Signature
Rule: "OR('Orderer1MSP.member')"
Writers:
Type: Signature
Rule: "OR('Orderer1MSP.member')"
Admins:
Type: Signature
Rule: "OR('Orderer1MSP.admin')"
Endorsement:
Type: Signature
Rule: "OR('Orderer1MSP.member')"
AnchorPeers:
- &Orderer2
Name: Orderer2MSP
ID: Orderer2MSP
MSPDir: crypto-config/peerOrganizations/orderer2.com/msp
Policies:
Readers:
Type: Signature
Rule: "OR('Orderer2MSP.member')"
Writers:
Type: Signature
Rule: "OR('Orderer2MSP.member')"
Admins:
Type: Signature
Rule: "OR('Orderer2MSP.admin')"
Endorsement:
Type: Signature
Rule: "OR('Orderer2MSP.member')"
AnchorPeers:
- &Org1
Name: Org1MSP
ID: Org1MSP
MSPDir: crypto-config/peerOrganizations/org1.example.com/msp
Policies:
Readers:
Type: Signature
Rule: "OR('Org1MSP.member')"
Writers:
Type: Signature
Rule: "OR('Org1MSP.member')"
Admins:
Type: Signature
Rule: "OR('Org1MSP.admin')"
Endorsement:
Type: Signature
Rule: "OR('Org1MSP.member')"
AnchorPeers:
- Host: peer0.org1.example.com
Port: 7061
- Host: peer1.org1.example.com
Port: 7062
- &Org2
Name: Org2MSP
ID: Org2MSP
MSPDir: crypto-config/peerOrganizations/org2.example.com/msp
Policies:
Readers:
Type: Signature
Rule: "OR('Org2MSP.member')"
Writers:
Type: Signature
Rule: "OR('Org2MSP.member')"
Admins:
Type: Signature
Rule: "OR('Org2MSP.admin')"
Endorsement:
Type: Signature
Rule: "OR('Org2MSP.member')"
AnchorPeers:
- Host: peer0.org2.example.com
Port: 7081
- Host: peer1.org2.example.com
Port: 7082
################################################################################
# SECTION: Application
################################################################################
Application: &ApplicationDefaults
Organizations:
# Policies defines the set of policies at this level of the config tree
# For Application policies, their canonical path is
# /Channel/Application/<PolicyName>
Policies:
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
Endorsement:
Type: ImplicitMeta
Rule: "MAJORITY Endorsement"
Capabilities:
<<: *ApplicationCapabilities
################################################################################
# SECTION: Orderer
################################################################################
Orderer: &Group1Defaults
OrdererType: etcdraft
Addresses:
- orderer0.group1.orderer1.com:7030
- orderer1.group1.orderer1.com:7031
- orderer2.group1.orderer1.com:7032
EtcdRaft:
Consenters:
- Host: orderer0.group1.orderer1.com
Port: 7030
ClientTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer0.group1.orderer1.com/tls/server.crt
ServerTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer0.group1.orderer1.com/tls/server.crt
- Host: orderer1.group1.orderer1.com
Port: 7031
ClientTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer1.group1.orderer1.com/tls/server.crt
ServerTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer1.group1.orderer1.com/tls/server.crt
- Host: orderer2.group1.orderer1.com
Port: 7032
ClientTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer2.group1.orderer1.com/tls/server.crt
ServerTLSCert: crypto-config/peerOrganizations/orderer1.com/peers/orderer2.group1.orderer1.com/tls/server.crt
BatchTimeout: 2s
BatchSize:
MaxMessageCount: 1
AbsoluteMaxBytes: 99 MB
PreferredMaxBytes: 512 KB
Organizations:
# Policies defines the set of policies at this level of the config tree
# For Orderer policies, their canonical path is
# /Channel/Orderer/<PolicyName>
Policies:
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
# BlockValidation specifies what signatures must be included in the block
# from the orderer for the peer to validate it.
BlockValidation:
Type: ImplicitMeta
Rule: "ANY Writers"
Capabilities:
<<: *OrdererCapabilities
Orderer: &Group2Defaults
OrdererType: solo
Addresses:
- orderer0.group2.orderer2.com:7050
BatchTimeout: 2s
BatchSize:
MaxMessageCount: 1
AbsoluteMaxBytes: 99 MB
PreferredMaxBytes: 512 KB
Organizations:
# Policies defines the set of policies at this level of the config tree
# For Orderer policies, their canonical path is
# /Channel/Orderer/<PolicyName>
Policies:
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
# BlockValidation specifies what signatures must be included in the block
# from the orderer for the peer to validate it.
BlockValidation:
Type: ImplicitMeta
Rule: "ANY Writers"
Capabilities:
<<: *OrdererCapabilities
################################################################################
# Profile
################################################################################
# https://github:com/hyperledger/fabric/blob/master/sampleconfig/configtx.yaml
Profiles:
# Profile used to create Genesis block for group group1 #
Group1Genesis:
<<: *ChannelDefaults
Orderer:
<<: *Group1Defaults
Organizations:
- *Orderer1
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *Orderer1
- *Orderer2
- *Org1
- *Org2
# Profile used to create Genesis block for group group2 #
Group2Genesis:
<<: *ChannelDefaults
Orderer:
<<: *Group2Defaults
Organizations:
- *Orderer2
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *Orderer1
- *Orderer2
- *Org1
- *Org2
# Profile used to create channeltx for my-channel1 #
MyChannel1:
<<: *ChannelDefaults
Orderer:
<<: *Group1Defaults
Organizations:
- *Orderer1
Capabilities:
<<: *ApplicationCapabilities
Consortium: SampleConsortium
Consortiums:
SampleConsortium:
Organizations:
- *Org1
- *Org2
Application:
<<: *ApplicationDefaults
Organizations:
- *Org1
- *Org2
# Profile used to create channeltx for my-channel2 #
MyChannel2:
<<: *ChannelDefaults
Orderer:
<<: *Group1Defaults
Organizations:
- *Orderer1
Capabilities:
<<: *ApplicationCapabilities
Consortium: SampleConsortium
Consortiums:
SampleConsortium:
Organizations:
- *Org1
- *Org2
Application:
<<: *ApplicationDefaults
Organizations:
- *Org1
- *Org2
# Profile used to create channeltx for my-channel3 #
MyChannel3:
<<: *ChannelDefaults
Orderer:
<<: *Group2Defaults
Organizations:
- *Orderer2
Capabilities:
<<: *ApplicationCapabilities
Consortium: SampleConsortium
Consortiums:
SampleConsortium:
Organizations:
- *Org1
- *Org2
Application:
<<: *ApplicationDefaults
Organizations:
- *Org1
- *Org2
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-orderer1.json from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"{
"name": "fablo-test-network-orderer1",
"description": "Connection profile for Orderer1 in Fablo network",
"version": "1.0.0",
"client": {
"organization": "Orderer1"
},
"organizations": {
"Orderer1": {
"mspid": "Orderer1MSP",
"peers": [
"peer0.org1.example.com",
"peer1.org1.example.com",
"peer0.org2.example.com",
"peer1.org2.example.com"
],
"certificateAuthorities": [
"ca.orderer1.com"
]
}
},
"peers": {
"peer0.org1.example.com": {
"url": "grpcs://localhost:7061",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org1.example.com"
}
},
"peer1.org1.example.com": {
"url": "grpcs://localhost:7062",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org1.example.com"
}
},
"peer0.org2.example.com": {
"url": "grpcs://localhost:7081",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org2.example.com"
}
},
"peer1.org2.example.com": {
"url": "grpcs://localhost:7082",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org2.example.com"
}
}
},
"certificateAuthorities": {
"ca.orderer1.com": {
"url": "https://localhost:7020",
"caName": "ca.orderer1.com",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/orderer1.com/ca/ca.orderer1.com-cert.pem"
},
"httpOptions": {
"verify": false
}
}
}
}
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-orderer1.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"name: fablo-test-network-orderer1
description: Connection profile for Orderer1 in Fablo network
version: 1.0.0
client:
organization: Orderer1
organizations:
Orderer1:
mspid: Orderer1MSP
peers:
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
certificateAuthorities:
- ca.orderer1.com
peers:
peer0.org1.example.com:
url: grpcs://localhost:7061
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org1.example.com
peer1.org1.example.com:
url: grpcs://localhost:7062
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org1.example.com
peer0.org2.example.com:
url: grpcs://localhost:7081
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org2.example.com
peer1.org2.example.com:
url: grpcs://localhost:7082
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org2.example.com
certificateAuthorities:
ca.orderer1.com:
url: https://localhost:7020
caName: ca.orderer1.com
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/orderer1.com/ca/ca.orderer1.com-cert.pem
httpOptions:
verify: false
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-orderer2.json from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"{
"name": "fablo-test-network-orderer2",
"description": "Connection profile for Orderer2 in Fablo network",
"version": "1.0.0",
"client": {
"organization": "Orderer2"
},
"organizations": {
"Orderer2": {
"mspid": "Orderer2MSP",
"peers": [
"peer0.org1.example.com",
"peer1.org1.example.com",
"peer0.org2.example.com",
"peer1.org2.example.com"
],
"certificateAuthorities": [
"ca.orderer2.com"
]
}
},
"peers": {
"peer0.org1.example.com": {
"url": "grpcs://localhost:7061",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org1.example.com"
}
},
"peer1.org1.example.com": {
"url": "grpcs://localhost:7062",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org1.example.com"
}
},
"peer0.org2.example.com": {
"url": "grpcs://localhost:7081",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org2.example.com"
}
},
"peer1.org2.example.com": {
"url": "grpcs://localhost:7082",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org2.example.com"
}
}
},
"certificateAuthorities": {
"ca.orderer2.com": {
"url": "https://localhost:7040",
"caName": "ca.orderer2.com",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/orderer2.com/ca/ca.orderer2.com-cert.pem"
},
"httpOptions": {
"verify": false
}
}
}
}
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-orderer2.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"name: fablo-test-network-orderer2
description: Connection profile for Orderer2 in Fablo network
version: 1.0.0
client:
organization: Orderer2
organizations:
Orderer2:
mspid: Orderer2MSP
peers:
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
certificateAuthorities:
- ca.orderer2.com
peers:
peer0.org1.example.com:
url: grpcs://localhost:7061
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org1.example.com
peer1.org1.example.com:
url: grpcs://localhost:7062
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org1.example.com
peer0.org2.example.com:
url: grpcs://localhost:7081
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org2.example.com
peer1.org2.example.com:
url: grpcs://localhost:7082
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org2.example.com
certificateAuthorities:
ca.orderer2.com:
url: https://localhost:7040
caName: ca.orderer2.com
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/orderer2.com/ca/ca.orderer2.com-cert.pem
httpOptions:
verify: false
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-org1.json from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"{
"name": "fablo-test-network-org1",
"description": "Connection profile for Org1 in Fablo network",
"version": "1.0.0",
"client": {
"organization": "Org1"
},
"organizations": {
"Org1": {
"mspid": "Org1MSP",
"peers": [
"peer0.org1.example.com",
"peer1.org1.example.com",
"peer0.org2.example.com",
"peer1.org2.example.com"
],
"certificateAuthorities": [
"ca.org1.example.com"
]
}
},
"peers": {
"peer0.org1.example.com": {
"url": "grpcs://localhost:7061",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org1.example.com"
}
},
"peer1.org1.example.com": {
"url": "grpcs://localhost:7062",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org1.example.com"
}
},
"peer0.org2.example.com": {
"url": "grpcs://localhost:7081",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org2.example.com"
}
},
"peer1.org2.example.com": {
"url": "grpcs://localhost:7082",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org2.example.com"
}
}
},
"certificateAuthorities": {
"ca.org1.example.com": {
"url": "https://localhost:7060",
"caName": "ca.org1.example.com",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem"
},
"httpOptions": {
"verify": false
}
}
}
}
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-org1.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"name: fablo-test-network-org1
description: Connection profile for Org1 in Fablo network
version: 1.0.0
client:
organization: Org1
organizations:
Org1:
mspid: Org1MSP
peers:
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
certificateAuthorities:
- ca.org1.example.com
peers:
peer0.org1.example.com:
url: grpcs://localhost:7061
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org1.example.com
peer1.org1.example.com:
url: grpcs://localhost:7062
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org1.example.com
peer0.org2.example.com:
url: grpcs://localhost:7081
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org2.example.com
peer1.org2.example.com:
url: grpcs://localhost:7082
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org2.example.com
certificateAuthorities:
ca.org1.example.com:
url: https://localhost:7060
caName: ca.org1.example.com
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem
httpOptions:
verify: false
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-org2.json from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"{
"name": "fablo-test-network-org2",
"description": "Connection profile for Org2 in Fablo network",
"version": "1.0.0",
"client": {
"organization": "Org2"
},
"organizations": {
"Org2": {
"mspid": "Org2MSP",
"peers": [
"peer0.org1.example.com",
"peer1.org1.example.com",
"peer0.org2.example.com",
"peer1.org2.example.com"
],
"certificateAuthorities": [
"ca.org2.example.com"
]
}
},
"peers": {
"peer0.org1.example.com": {
"url": "grpcs://localhost:7061",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org1.example.com"
}
},
"peer1.org1.example.com": {
"url": "grpcs://localhost:7062",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org1.example.com"
}
},
"peer0.org2.example.com": {
"url": "grpcs://localhost:7081",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer0.org2.example.com"
}
},
"peer1.org2.example.com": {
"url": "grpcs://localhost:7082",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt"
},
"grpcOptions": {
"ssl-target-name-override": "peer1.org2.example.com"
}
}
},
"certificateAuthorities": {
"ca.org2.example.com": {
"url": "https://localhost:7080",
"caName": "ca.org2.example.com",
"tlsCACerts": {
"path": "<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem"
},
"httpOptions": {
"verify": false
}
}
}
}
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/connection-profiles/connection-profile-org2.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"name: fablo-test-network-org2
description: Connection profile for Org2 in Fablo network
version: 1.0.0
client:
organization: Org2
organizations:
Org2:
mspid: Org2MSP
peers:
- peer0.org1.example.com
- peer1.org1.example.com
- peer0.org2.example.com
- peer1.org2.example.com
certificateAuthorities:
- ca.org2.example.com
peers:
peer0.org1.example.com:
url: grpcs://localhost:7061
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org1.example.com
peer1.org1.example.com:
url: grpcs://localhost:7062
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org1.example.com
peer0.org2.example.com:
url: grpcs://localhost:7081
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer0.org2.example.com
peer1.org2.example.com:
url: grpcs://localhost:7082
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt
grpcOptions:
ssl-target-name-override: peer1.org2.example.com
certificateAuthorities:
ca.org2.example.com:
url: https://localhost:7080
caName: ca.org2.example.com
tlsCACerts:
path: >-
<absolute path>/samples/fablo-target/fabric-config/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem
httpOptions:
verify: false
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/crypto-config-orderer1.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"PeerOrgs:
- Name: Orderer1
Domain: orderer1.com
Specs:
- Hostname: orderer0.group1
- Hostname: orderer1.group1
- Hostname: orderer2.group1
Template:
Count: 0
Users:
Count: 1
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/crypto-config-orderer2.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"PeerOrgs:
- Name: Orderer2
Domain: orderer2.com
Specs:
- Hostname: orderer0.group2
Template:
Count: 0
Users:
Count: 1
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/crypto-config-org1.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"PeerOrgs:
- Name: Org1
Domain: org1.example.com
Specs:
Template:
Count: 2
Users:
Count: 1
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/crypto-config-org2.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"PeerOrgs:
- Name: Org2
Domain: org2.example.com
Specs:
Template:
Count: 2
Users:
Count: 1
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/explorer/config-global.json from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"{
"network-configs": {
"network-org1": {
"name": "Network of Org1",
"profile": "/opt/explorer/app/platform/fabric/connection-profile/connection-profile-org1.json"
},
"network-org2": {
"name": "Network of Org2",
"profile": "/opt/explorer/app/platform/fabric/connection-profile/connection-profile-org2.json"
}
},
"license": "Apache-2.0"
}
"
`;
exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-config/fabric-ca-server-config/orderer1.com/fabric-ca-server-config.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"#############################################################################
# This is a configuration file for the fabric-ca-server command.
#
# COMMAND LINE ARGUMENTS AND ENVIRONMENT VARIABLES
# ------------------------------------------------
# Each configuration element can be overridden via command line
# arguments or environment variables. The precedence for determining
# the value of each element is as follows:
# 1) command line argument
# Examples:
# a) --port 443
# To set the listening port
# b) --ca.keyfile ../mykey.pem
# To set the "keyfile" element in the "ca" section below;
# note the '.' separator character.
# 2) environment variable
# Examples:
# a) FABRIC_CA_SERVER_PORT=443
# To set the listening port
# b) FABRIC_CA_SERVER_CA_KEYFILE="../mykey.pem"
# To set the "keyfile" element in the "ca" section below;
# note the '_' separator character.
# 3) configuration file
# 4) default value (if there is one)
# All default values are shown beside each element below.
#
# FILE NAME ELEMENTS
# ------------------
# The value of all fields whose name ends with "file" or "files" are
# name or names of other files.
# For example, see "tls.certfile" and "tls.clientauth.certfiles".
# The value of each of these fields can be a simple filename, a
# relative path, or an absolute path. If the value is not an
# absolute path, it is interpreted as being relative to the location
# of this configuration file.
#
#############################################################################
# Version of config file
version: 1.5.5
# Server's listening port (default: 7054)
port: 7054
# Cross-Origin Resource Sharing (CORS)
cors:
enabled: false
origins:
- "*"
# Enables debug logging (default: false)
debug: false