-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathfablo-config-hlf2-1org-1chaincode-k8s.json.test.ts.snap
496 lines (393 loc) · 18.6 KB
/
fablo-config-hlf2-1org-1chaincode-k8s.json.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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-config/.gitignore from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"/config
/crypto-config
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/env bash
set -e
FABLO_NETWORK_ROOT="$(cd "$(dirname "$0")" && pwd)"
source "$FABLO_NETWORK_ROOT/fabric-k8s/scripts/base-help.sh"
source "$FABLO_NETWORK_ROOT/fabric-k8s/scripts/base-functions.sh"
source "$FABLO_NETWORK_ROOT/fabric-k8s/scripts/chaincode-functions.sh"
source "$FABLO_NETWORK_ROOT/fabric-k8s/.env"
# location of generated configurations
CONFIG_DIR="$FABLO_NETWORK_ROOT/fabric-config"
RESETBG="$(printf '\\e[0m\\n')"
BLUE="$(printf '\\033[34m')"
networkUp() {
printHeadline "Checking dependencies..." "U1F984"
verifyKubernetesConnectivity
printHeadline "Starting Network..." "U1F984"
deployPeer
deployOrderer
installChannels
installChaincodes
printHeadline "Done! Enjoy your fresh network" "U1F984"
}
networkDown() {
printHeadline "Destroying network" "U1F913"
destroyNetwork
}
if [ "$1" = "up" ]; then
networkUp
elif [ "$1" = "down" ]; then
networkDown
elif [ "$1" = "reset" ]; then
networkDown
sleep 60
networkUp
elif [ "$1" = "start" ]; then
startNetwork
elif [ "$1" = "stop" ]; then
stopNetwork
elif [ "$1" = "chaincodes" ] && [ "$2" = "install" ]; then
installChaincodes
elif [ "$1" = "chaincode" ] && [ "$2" = "install" ]; then
installChaincode "$3" "$4"
elif [ "$1" = "chaincode" ] && [ "$2" = "upgrade" ]; then
upgradeChaincode "$3" "$4"
elif [ "$1" = "chaincode" ] && [ "$2" = "dev" ]; then
runDevModeChaincode "$3" "$4"
elif [ "$1" = "channel" ]; then
channelQuery "\${@:2}"
elif [ "$1" = "snapshot" ]; then
createSnapshot "$2"
elif [ "$1" = "clone-to" ]; then
cloneSnapshot "$2" "\${3:-""}"
elif [ "$1" = "help" ]; then
printHelp
elif [ "$1" = "--help" ]; then
printHelp
else
echo "No command specified"
echo "Basic commands are: up, down, start, stop, reset"
echo "To list channel query helper commands type: 'fablo channel --help'"
echo "Also check: 'chaincode install'"
echo "Use 'help' or '--help' for more information"
fi
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/.env from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"NAMESPACE=default
REPOSITORY="https://kfsoftware.github.io/hlf-helm-charts"
STORAGE_CLASS=$(kubectl describe sc | grep Name | tr -s ' ' | cut -d ':' -f 2 | cut -d ' ' -f 2)
FABLO_VERSION=2.2.0
FABLO_BUILD=<date with git hash>
FABLO_CONFIG=<absolute path>
ORDERER_IMAGE=hyperledger/fabric-orderer
ORDERER_VERSION=2.4.7
PEER_IMAGE=quay.io/kfsoftware/fabric-peer
PEER_VERSION=2.4.1-v0.0.3
# PEER_VERSION=2.4.7
CA_IMAGE=hyperledger/fabric-ca
CA_VERSION=1.5.5
LOGGING_LEVEL=info
CHAINCODES_BASE_DIR=<absolute path>
ROOT_CA_ADMIN_NAME=admin
ROOT_CA_ADMIN_PASSWORD=adminpw
ORDERER_CA_ADMIN_NAME=admin
ORDERER_CA_ADMIN_PASSWORD=adminpw
ORG1_CA_ADMIN_NAME=admin
ORG1_CA_ADMIN_PASSWORD=adminpw
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/base-functions.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/env bash
source "$FABLO_NETWORK_ROOT/fabric-k8s/scripts/util.sh"
deployPeer() {
printItalics "Deploying Org1 CA" "U1F984"
kubectl hlf ca create --image="$CA_IMAGE" --version="$CA_VERSION" --storage-class="$STORAGE_CLASS" --capacity=2Gi --name=org1-ca --enroll-id=org1 --enroll-pw="$ORG1_CA_ADMIN_PASSWORD"
sleep 3
while [[ $(kubectl get pods -l release=org1-ca -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}') != "True" ]]; do
sleep 5
inputLog "waiting for CA"
done
kubectl hlf ca register --name=org1-ca --user=peer --secret="$ORG1_CA_ADMIN_PASSWORD" --type=peer --enroll-id org1 --enroll-secret="$ORG1_CA_ADMIN_PASSWORD" --mspid Org1MSP
inputLog "registered Org1 -ca"
printItalics "Deploying Peers" "U1F984"
sleep 10
kubectl hlf peer create --statedb=leveldb --version="$PEER_VERSION" --storage-class="$STORAGE_CLASS" --enroll-id=peer --mspid=Org1MSP \\
--enroll-pw="$ORG1_CA_ADMIN_PASSWORD" --capacity=5Gi --name=peer0 --ca-name="org1-ca.$NAMESPACE" --k8s-builder=true --external-service-builder=false
kubectl hlf peer create --statedb=leveldb --version="$PEER_VERSION" --storage-class="$STORAGE_CLASS" --enroll-id=peer --mspid=Org1MSP \\
--enroll-pw="$ORG1_CA_ADMIN_PASSWORD" --capacity=5Gi --name=peer1 --ca-name="org1-ca.$NAMESPACE" --k8s-builder=true --external-service-builder=false
while [[ $(kubectl get pods -l app=hlf-peer --output=jsonpath='{.items[*].status.containerStatuses[0].ready}') != "true true" ]]; do
sleep 5
inputLog "waiting for peer nodes to be ready"
done
}
deployOrderer() {
printItalics "Deploying Orderers" "U1F984"
kubectl hlf ca create --storage-class="$STORAGE_CLASS" --capacity=2Gi --name=orderer-ca --enroll-id=orderer --enroll-pw="$ORDERER_CA_ADMIN_PASSWORD"
while [[ $(kubectl get pods -l release=orderer-ca -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}') != "True" ]]; do
sleep 5
inputLog "waiting for orderer-ca CA to be ready" "$RESETBG"
done
kubectl hlf ca register --name=orderer-ca --user="$ORDERER_CA_ADMIN_NAME" --secret="$ORDERER_CA_ADMIN_PASSWORD" --type=orderer --enroll-id=orderer --enroll-secret="$ORDERER_CA_ADMIN_PASSWORD" --mspid OrdererMSP &&
inputLog "registered orderer-ca"
kubectl hlf ordnode create --version="$ORDERER_VERSION" \\
--storage-class="$STORAGE_CLASS" --enroll-id="$ORDERER_CA_ADMIN_NAME" --mspid=OrdererMSP \\
--enroll-pw="$ORDERER_CA_ADMIN_PASSWORD" --capacity=2Gi --name=orderer-node --ca-name="orderer-ca.$NAMESPACE"
while [[ $(kubectl get pods -l app=hlf-ordnode -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}') != "True" ]]; do
sleep 5
inputLog "waiting for orderer Node to be ready"
done
kubectl hlf inspect --output "$CONFIG_DIR/ordservice.yaml" -o OrdererMSP
kubectl hlf ca enroll --name=orderer-ca --user="$ORDERER_CA_ADMIN_NAME" --secret="$ORDERER_CA_ADMIN_PASSWORD" --mspid OrdererMSP --ca-name ca --output "$CONFIG_DIR/admin-ordservice.yaml" &&
kubectl hlf utils adduser --userPath="$CONFIG_DIR/admin-ordservice.yaml" --config="$CONFIG_DIR/ordservice.yaml" --username="$ORDERER_CA_ADMIN_NAME" --mspid=OrdererMSP
}
installChannels() {
printItalics "Creating 'my-channel1' on /peer0" "U1F63B"
sleep 10
kubectl hlf channel generate --output="$CONFIG_DIR/my-channel1.block" --name=my-channel1 --organizations Org1MSP --ordererOrganizations OrdererMSP &&
kubectl hlf ca enroll --name=orderer-ca --namespace="$NAMESPACE" --user="$ORG1_CA_ADMIN_NAME" --secret="$ORG1_CA_ADMIN_PASSWORD" --mspid OrdererMSP --ca-name=tlsca --output "$CONFIG_DIR/admin-tls-ordservice.yaml" &&
sleep 10
kubectl hlf ordnode join --block="$CONFIG_DIR/my-channel1.block" --name=orderer-node --namespace="$NAMESPACE" --identity="$CONFIG_DIR/admin-tls-ordservice.yaml"
kubectl hlf ca register --name=org1-ca --user="$ORG1_CA_ADMIN_NAME" --secret="$ORG1_CA_ADMIN_PASSWORD" --type=admin --enroll-id org1 --enroll-secret="$ORG1_CA_ADMIN_PASSWORD" --mspid Org1MSP &&
kubectl hlf ca enroll --name=org1-ca --user="$ORG1_CA_ADMIN_NAME" --secret="$ORG1_CA_ADMIN_PASSWORD" --mspid Org1MSP --ca-name ca --output "$CONFIG_DIR/peer-Org1.yaml" &&
kubectl hlf inspect --output "$CONFIG_DIR/Org1.yaml" -o "Org1MSP" -o "OrdererMSP" &&
kubectl hlf utils adduser --userPath="$CONFIG_DIR/peer-Org1.yaml" --config="$CONFIG_DIR/Org1.yaml" --username="$ORG1_CA_ADMIN_NAME" --mspid=Org1MSP &&
sleep 10
printItalics "Joining 'my-channel1' on org1/peer0" "U1F638"
kubectl hlf channel join --name=my-channel1 --config="$CONFIG_DIR/Org1.yaml" --user="$ORG1_CA_ADMIN_NAME" -p="peer0.$NAMESPACE"
printItalics "Joining 'my-channel1' on org1/peer1" "U1F638"
kubectl hlf channel join --name=my-channel1 --config="$CONFIG_DIR/Org1.yaml" --user="$ORG1_CA_ADMIN_NAME" -p="peer1.$NAMESPACE"
# add anchor peers
printItalics "Electing on org1/peer0 as Anchor peer" "U1F638"
kubectl hlf channel addanchorpeer --channel=my-channel1 --config="$CONFIG_DIR/Org1.yaml" --user="$ORG1_CA_ADMIN_NAME" --peer="peer0.$NAMESPACE"
printItalics "Electing on org1/peer1 as Anchor peer" "U1F638"
kubectl hlf channel addanchorpeer --channel=my-channel1 --config="$CONFIG_DIR/Org1.yaml" --user="$ORG1_CA_ADMIN_NAME" --peer="peer1.$NAMESPACE"
}
installChaincodes() {
printItalics "Installing chaincodes...." "U1F618"
printItalics "Building chaincode chaincode1" "U1F618"
buildAndInstallChaincode "chaincode1" "peer0.$NAMESPACE" "node" "$CHAINCODES_BASE_DIR/./chaincodes/chaincode-kv-node" "0.0.1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml"
printItalics "Approving chaincode...." "U1F618"
approveChaincode "chaincode1" "peer0.$NAMESPACE" "0.0.1" "my-channel1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml" "Org1MSP"
printItalics "Committing chaincode 'chaincode1' on channel 'my-channel1' " "U1F618"
commitChaincode "chaincode1" "peer0.$NAMESPACE" "0.0.1" "my-channel1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml" "Org1MSP"
printItalics "Building chaincode chaincode1" "U1F618"
buildAndInstallChaincode "chaincode1" "peer1.$NAMESPACE" "node" "$CHAINCODES_BASE_DIR/./chaincodes/chaincode-kv-node" "0.0.1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml"
printItalics "Approving chaincode...." "U1F618"
approveChaincode "chaincode1" "peer1.$NAMESPACE" "0.0.1" "my-channel1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml" "Org1MSP"
printItalics "Committing chaincode 'chaincode1' on channel 'my-channel1' " "U1F618"
commitChaincode "chaincode1" "peer1.$NAMESPACE" "0.0.1" "my-channel1" "$ORG1_CA_ADMIN_NAME" "$CONFIG_DIR/Org1.yaml" "Org1MSP"
}
destroyNetwork() {
kubectl delete fabricpeers.hlf.kungfusoftware.es --all-namespaces --all
kubectl delete fabriccas.hlf.kungfusoftware.es --all-namespaces --all
kubectl delete fabricorderernodes.hlf.kungfusoftware.es --all-namespaces --all
kubectl delete fabricchaincode.hlf.kungfusoftware.es --all-namespaces --all
}
printHeadline() {
bold=$'\\e[1m'
end=$'\\e[0m'
TEXT=$1
EMOJI=$2
printf "\${bold}============ %b %s %b ==============\${end}\\n" "\\\\$EMOJI" "$TEXT" "\\\\$EMOJI"
}
printItalics() {
italics=$'\\e[3m'
end=$'\\e[0m'
TEXT=$1
EMOJI=$2
printf "\${italics}==== %b %s %b ====\${end}\\n" "\\\\$EMOJI" "$TEXT" "\\\\$EMOJI"
}
inputLog() {
end=$'\\e[0m'
darkGray=$'\\e[90m'
echo "\${darkGray} $1 \${end}"
}
inputLogShort() {
end=$'\\e[0m'
darkGray=$'\\e[90m'
echo "\${darkGray} $1 \${end}"
}
verifyKubernetesConnectivity() {
echo "Verifying kubectl-hlf installation..."
if ! [[ $(command -v kubectl-hlf) ]]; then
echo "Error: Fablo could not detect kubectl hlf plugin. Ensure you have installed:
- kubectl - https://kubernetes.io/docs/tasks/tools/
- helm - https://helm.sh/docs/intro/install/
- krew - https://krew.sigs.k8s.io/docs/user-guide/setup/install/
- hlf-operator along with krew hlf plugin - https://github.com/hyperledger-labs/hlf-operator#install-kubernetes-operator"
exit 1
else
echo " $(command -v kubectl-hlf)"
fi
if [ "$(kubectl get pods -l=app.kubernetes.io/name=hlf-operator -o jsonpath='{.items}')" = "[]" ]; then
echo "Error: hlf-operator is not running. You can install it with:
helm install hlf-operator --version=1.6.0 kfs/hlf-operator"
exit 1
fi
echo "Verifying default kubernetes cluster"
if ! kubectl get ns default >/dev/null 2>&1; then
printf "No K8 cluster detected\\n" >&2
exit 1
fi
while [ "$(kubectl get pods -l=app.kubernetes.io/name=hlf-operator -o jsonpath='{.items[*].status.containerStatuses[0].ready}')" != "true" ]; do
sleep 5
echo "$BLUE" "Waiting for Operator to be ready." "$RESETBG"
done
}
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/base-help.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/env bash
printHelp() {
echo "Fablo is powered by SoftwareMill"
echo ""
echo "usage: ./fabric-k8.sh <command>"
echo ""
echo "Commands: "
echo ""
echo "./fabric-k8.sh up"
echo -e "\\t Use for first run. Creates all needed artifacts (certs, genesis block) and starts network for the first time."
echo -e "\\t After 'up' commands start/stop are used to manage network and rerun to rerun it"
echo ""
echo "./fabric-k8.sh down"
echo -e "\\t Back to empty state - destorys created containers, prunes generated certificates, configs."
echo ""
echo "./fabric-k8.sh channel --help"
echo -e "\\t Detailed help for channel management scripts."
echo ""
}
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/chaincode-functions.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/env bash
buildAndInstallChaincode() {
local CHAINCODE_NAME="$1"
local PEER="$2"
local CHAINCODE_LANG="$3"
local CHAINCODE_DIR_PATH="$4"
local CHAINCODE_VERSION="$5"
local CHAINCODE_LABEL="\${CHAINCODE_NAME}_$CHAINCODE_VERSION"
local USER="$6"
local CONFIG="$7"
if [ -z "$CHAINCODE_NAME" ]; then
echo "Error: chaincode name is not provided"
exit 1
fi
if [ -z "$PEER" ]; then
echo "Error: peer number is not provided e.g 0, 1"
exit 1
fi
if [ -z "$CHAINCODE_LANG" ]; then
echo "Error: chaincode language is not provided"
exit 1
fi
if [ -z "$CHAINCODE_VERSION" ]; then
echo "Error: chaincode version is not provided e.g 1.0, 2.0"
exit 1
fi
kubectl hlf chaincode install --path="$CHAINCODE_DIR_PATH" \\
--config="$CONFIG" --language="$CHAINCODE_LANG" --label="$CHAINCODE_LABEL" --user="$USER" --peer="$PEER"
}
approveChaincode() {
local CHAINCODE_NAME="$1"
local PEER="$2"
local CHAINCODE_VERSION="$3"
local CHANNEL_NAME="$4"
local USER="$5"
local CONFIG="$6"
local MSP="$7"
local SEQUENCE
SEQUENCE="$(kubectl hlf chaincode querycommitted --channel="$CHANNEL_NAME" --config="$CONFIG" --user="$USER" --peer="$PEER" 2>/dev/null | awk '{print $3}' | sed -n '2p')"
SEQUENCE=$((SEQUENCE + 1))
if [ -z "$CHAINCODE_NAME" ]; then
echo "Error: chaincode name is not provided"
exit 1
fi
if [ -z "$PEER" ]; then
echo "Error: peer number is not provided e.g 0, 1"
exit 1
fi
if [ -z "$CHAINCODE_VERSION" ]; then
echo "Error: chaincode version is not provided e.g 1.0, 2.0"
exit 1
fi
if [ -z "$CHANNEL_NAME" ]; then
echo "Error: channel name is not provided"
exit 1
fi
PACKAGE_ID="$(kubectl hlf chaincode queryinstalled --config="$CONFIG" --user="$USER" --peer="$PEER" | awk '{print $1}' | grep chaincode)"
printItalics "Approving chaincode $CHAINCODE_NAME on $PEER" "U1F618"
kubectl hlf chaincode approveformyorg --config="$CONFIG" --user="$USER" --peer="$PEER" \\
--package-id="$PACKAGE_ID" --version "$CHAINCODE_VERSION" --sequence "$SEQUENCE" --name="$CHAINCODE_NAME" \\
--policy="OR('$MSP.member')" --channel="$CHANNEL_NAME"
}
commitChaincode() {
local CHAINCODE_NAME="$1"
local PEER=$2
local CHAINCODE_VERSION="$3"
local CHANNEL_NAME="$4"
local USER="$5"
local CONFIG="$6"
local MSP="$7"
local SEQUENCE
SEQUENCE="$(kubectl hlf chaincode querycommitted --channel="$CHANNEL_NAME" --config="$CONFIG" --user="$USER" --peer="$PEER" 2>/dev/null | awk '{print $3}' | sed -n '2p')"
SEQUENCE=$((SEQUENCE + 1))
if [ -z "$CHAINCODE_NAME" ]; then
echo "Error: chaincode name is not provided"
exit 1
fi
if [ -z "$PEER" ]; then
echo "Error: peer number is not provided e.g 0, 1"
exit 1
fi
if [ -z "$CHAINCODE_VERSION" ]; then
echo "Error: chaincode version is not provided e.g 1.0, 2.0"
exit 1
fi
if [ -z "$CHANNEL_NAME" ]; then
echo "Error: channel name is not provided"
exit 1
fi
PACKAGE_ID="$(kubectl hlf chaincode queryinstalled --config="$CONFIG" --user="$USER" --peer="$PEER" | awk '{print $1}' | grep chaincode)"
kubectl hlf chaincode commit --config="$CONFIG" --user="$USER" --mspid="$MSP" \\
--version "$CHAINCODE_VERSION" --sequence "$SEQUENCE" --name="$CHAINCODE_NAME" \\
--policy="OR('$MSP.member')" --channel="$CHANNEL_NAME"
}
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/util.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/bash
retry() {
local n=0
local try=$1
local cmd="\${*:2}"
[[ $# -le 1 ]]
until [[ $n -ge $try ]]; do
if [[ $cmd ]]; then
break
else
echo $(printf '\\033[31m') "Previous command FAILED"
((n++))
echo $(printf '\\033[34m') "RETRYING..."
sleep 1
fi
done
}
retry "$*"
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/hooks/post-generate.sh from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"#!/usr/bin/env bash
# The code from this file was called after Fablo generated Hyperledger Fabric configuration
echo "Executing post-generate hook"
"
`;
exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper files from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
[
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-config/.gitignore",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s.sh",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/.env",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/base-functions.sh",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/base-help.sh",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/chaincode-functions.sh",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fabric-k8s/scripts/util.sh",
"e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/hooks/post-generate.sh",
]
`;