[#100] Add target to prepare storage for service components
Signed-off-by: Alex Vanin <a.vanin@yadro.com>
This commit is contained in:
parent
0981202d6b
commit
ea91d88232
4 changed files with 25 additions and 2 deletions
22
Makefile
22
Makefile
|
@ -58,9 +58,8 @@ get: $(foreach SVC, $(GET_SVCS), get.$(SVC))
|
|||
|
||||
# Start environment
|
||||
.PHONY: up
|
||||
up: up/basic
|
||||
up: up/basic up/pre-services
|
||||
@$(foreach SVC, $(START_SVCS), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d))
|
||||
./vendor/frostfs-adm morph proxy-add-account --config frostfs-adm.yml --account=`docker container exec morph_chain neo-go wallet dump-keys -w /wallets/s3-wallet.json | head -1 | awk '{print $1}'` || die "Couldn't set s3-gw wallet as proxy wallet"
|
||||
@echo "Full FrostFS Developer Environment is ready"
|
||||
|
||||
# Build up FrostFS
|
||||
|
@ -98,6 +97,25 @@ up/bootstrap: get vendor/hosts
|
|||
|| die "Failed to create subject for the wallet"; \
|
||||
fi
|
||||
echo "FrostFS sidechain environment is deployed"
|
||||
|
||||
# Prepare to start services
|
||||
.PHONY: up/pre-services
|
||||
up/pre-services:
|
||||
@source ./bin/helper.sh
|
||||
@echo "Prepare storage for services"; \
|
||||
if [ -z "$$(./vendor/frostfs-cli -c cli-cfg.yml container list)" ]; then \
|
||||
subj_key=`docker container exec -it morph_chain neo-go wallet dump-keys -w /wallets/system-wallet.json | tail -1 | tr -d ' \r\n'` \
|
||||
&& echo "Subject key: $${subj_key}" \
|
||||
&& ./vendor/frostfs-adm -c frostfs-adm.yml morph frostfsid create-subject --namespace "" --subject-key $${subj_key} --subject-name system \
|
||||
|| die "Failed to create subject for system wallet"; \
|
||||
proxy_acc=`docker container exec -it morph_chain neo-go wallet dump-keys -w /wallets/system-wallet.json | head -1 | cut -d" " -f1` \
|
||||
&& echo "Proxy acc: $${proxy_acc}" \
|
||||
&& ./vendor/frostfs-adm morph proxy-add-account --config frostfs-adm.yml --account=$${proxy_acc} || die "Failed to register S3 gateway as proxy acc"; \
|
||||
cid=`./vendor/frostfs-cli -c cli-cfg.yml container create -p "REP 4" --nns-name "cors" --nns-zone "container" --await | grep CID | cut -d" " -f2` \
|
||||
&& echo "CORS Container: $${cid}" \
|
||||
&& ./vendor/frostfs-cli -c cli-cfg.yml ape-manager add --target-type container --target-name $${cid} --rule "allow Object.* *" || die "Failed to create CORS container"
|
||||
fi
|
||||
@echo "Storage is prepared";
|
||||
|
||||
# Build up certain service
|
||||
.PHONY: up/%
|
||||
|
|
3
cli-cfg.yml
Normal file
3
cli-cfg.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
wallet: ./wallets/system-wallet.json
|
||||
password: ""
|
||||
rpc-endpoint: s01.frostfs.devenv:8080
|
|
@ -19,6 +19,7 @@ services:
|
|||
- ./config.yml:/wallets/config.yml
|
||||
- ./../../vendor/hosts:/etc/hosts
|
||||
- ./../../wallets/wallet.json:/wallets/wallet.json
|
||||
- ./../../wallets/system-wallet.json:/wallets/system-wallet.json
|
||||
- ./../s3_gate/wallet.json:/wallets/s3-wallet.json
|
||||
- ./../storage/wallet01.json:/wallets/storage/wallet01.json
|
||||
- ./../storage/wallet02.json:/wallets/storage/wallet02.json
|
||||
|
|
1
wallets/system-wallet.json
Normal file
1
wallets/system-wallet.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":"1.0","accounts":[{"address":"NQijiVKHbL22PfF2AJQukv1CX75itxgzht","key":"6PYQKrpme57VqaucxuF7dDoSZRRA8d94oatHcScqhiFBauCXQvFDaYwEWa","label":"","contract":{"script":"DCEDRdLtpFIWeYyI7doTKRhIl4qYjaybGDveTyGpbqjsLZNBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}}
|
Loading…
Add table
Reference in a new issue