forked from TrueCloudLab/frostfs-dev-env
[#172] Makefile: Fix comments of targets
Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
f8d2708e1a
commit
b0087a5357
7 changed files with 16 additions and 7 deletions
5
Makefile
5
Makefile
|
@ -52,7 +52,7 @@ pull:
|
||||||
$(foreach SVC, $(PULL_SVCS), $(shell cd services/$(SVC) && docker-compose pull))
|
$(foreach SVC, $(PULL_SVCS), $(shell cd services/$(SVC) && docker-compose pull))
|
||||||
@:
|
@:
|
||||||
|
|
||||||
# Get all services artifacs
|
# Get all services artifacts
|
||||||
.PHONY: get
|
.PHONY: get
|
||||||
get: $(foreach SVC, $(GET_SVCS), get.$(SVC))
|
get: $(foreach SVC, $(GET_SVCS), get.$(SVC))
|
||||||
@:
|
@:
|
||||||
|
@ -109,6 +109,7 @@ down/bootstrap:
|
||||||
down/%:
|
down/%:
|
||||||
@docker-compose -f services/$*/docker-compose.yml down
|
@docker-compose -f services/$*/docker-compose.yml down
|
||||||
|
|
||||||
|
# Generate changes for /etc/hosts
|
||||||
.PHONY: vendor/hosts
|
.PHONY: vendor/hosts
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
vendor/hosts:
|
vendor/hosts:
|
||||||
|
@ -122,7 +123,7 @@ vendor/hosts:
|
||||||
done < $${file};
|
done < $${file};
|
||||||
done > $@
|
done > $@
|
||||||
|
|
||||||
# Display changes for /etc/hosts
|
# Generate and display changes for /etc/hosts
|
||||||
.PHONY: hosts
|
.PHONY: hosts
|
||||||
hosts: vendor/hosts
|
hosts: vendor/hosts
|
||||||
@cat vendor/hosts
|
@cat vendor/hosts
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# Download privnet chain dump with pre-deployed NeoFS contracts
|
# Download privnet chain dump with pre-deployed NeoFS contracts
|
||||||
|
|
||||||
get.chain: CHAIN_DUMP_NAME=devenv.dump.
|
get.chain: CHAIN_DUMP_NAME=devenv.dump.
|
||||||
get.chain: CHAIN_PATH?=
|
get.chain: CHAIN_PATH?=
|
||||||
get.chain:
|
get.chain:
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
# Get NeoFS LOCODE database
|
# Get NeoFS IR artifacts (LOCODE database and NeoFS CLI)
|
||||||
|
|
||||||
LOCODE_DB_ARCHIVE_PATH=./vendor
|
LOCODE_DB_ARCHIVE_PATH=./vendor
|
||||||
LOCODE_DB_ARCHIVE_FILE=locode_db.gz
|
LOCODE_DB_ARCHIVE_FILE=locode_db.gz
|
||||||
|
|
||||||
get.ir: get.locode get.cli
|
get.ir: get.locode get.cli
|
||||||
|
|
||||||
|
# Get NeoFS LOCODE database
|
||||||
get.locode: LOCODE_DB_PATH?=
|
get.locode: LOCODE_DB_PATH?=
|
||||||
get.locode:
|
get.locode:
|
||||||
@mkdir -p ${LOCODE_DB_ARCHIVE_PATH}
|
@mkdir -p ${LOCODE_DB_ARCHIVE_PATH}
|
||||||
|
@ -21,6 +22,7 @@ endif
|
||||||
|
|
||||||
gzip -dfk ${LOCODE_DB_ARCHIVE_PATH}/${LOCODE_DB_ARCHIVE_FILE}
|
gzip -dfk ${LOCODE_DB_ARCHIVE_PATH}/${LOCODE_DB_ARCHIVE_FILE}
|
||||||
|
|
||||||
|
# Download NeoFS CLI
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
get.cli: NEOFS_CLI_FILE=./vendor/neofs-cli
|
get.cli: NEOFS_CLI_FILE=./vendor/neofs-cli
|
||||||
get.cli: NEOFS_CLI_ARCHIVE_FILE=${NEOFS_CLI_FILE}.tar.gz
|
get.cli: NEOFS_CLI_ARCHIVE_FILE=${NEOFS_CLI_FILE}.tar.gz
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# Download NeoFS Contracts and Adm tool to deploy environment
|
# Download NeoFS Contracts and Adm tool to deploy environment
|
||||||
|
|
||||||
get.morph_chain: get.contracts get.adm
|
get.morph_chain: get.contracts get.adm
|
||||||
|
|
||||||
|
# Download NeoFS Contracts
|
||||||
get.contracts: NEOFS_CONTRACTS_DEST=./vendor/contracts
|
get.contracts: NEOFS_CONTRACTS_DEST=./vendor/contracts
|
||||||
get.contracts: NEOFS_CONTRACTS_ARCHIVE=neofs-contracts.tar.gz
|
get.contracts: NEOFS_CONTRACTS_ARCHIVE=neofs-contracts.tar.gz
|
||||||
get.contracts:
|
get.contracts:
|
||||||
|
@ -16,6 +18,7 @@ else
|
||||||
@cp -r ${NEOFS_CONTRACTS_PATH}/* ${NEOFS_CONTRACTS_DEST}
|
@cp -r ${NEOFS_CONTRACTS_PATH}/* ${NEOFS_CONTRACTS_DEST}
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Download NeoFS ADM tool
|
||||||
get.adm: NEOFS_ADM_DEST=./vendor/neofs-adm
|
get.adm: NEOFS_ADM_DEST=./vendor/neofs-adm
|
||||||
get.adm: NEOFS_ADM_ARCHIVE=neofs-adm.tar.gz
|
get.adm: NEOFS_ADM_ARCHIVE=neofs-adm.tar.gz
|
||||||
get.adm:
|
get.adm:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Create new tls certs
|
# Create new TLS certs for NATS server and clients
|
||||||
|
|
||||||
NATS_DIR=$(abspath services/nats)
|
NATS_DIR=$(abspath services/nats)
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Create new tls certs
|
# Create new TLS certs to NeoFS node
|
||||||
|
|
||||||
CURRENT_DIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
CURRENT_DIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
||||||
STORAGE_DIR=$(patsubst %/,%,$(CURRENT_DIR))
|
STORAGE_DIR=$(patsubst %/,%,$(CURRENT_DIR))
|
||||||
SSL_CONFIG := $(shell mktemp)
|
SSL_CONFIG := $(shell mktemp)
|
||||||
|
|
||||||
get.storage:
|
get.storage:
|
||||||
@echo "⇒ Creating tls certs to NeoFS node"
|
@echo "⇒ Creating TLS certs to NeoFS node"
|
||||||
@(echo "[req]"; \
|
@(echo "[req]"; \
|
||||||
echo "distinguished_name=req"; \
|
echo "distinguished_name=req"; \
|
||||||
echo "req_extensions=san"; \
|
echo "req_extensions=san"; \
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# Add self-signed node TLS certificate to trusted store
|
||||||
|
|
||||||
prepare.storage:
|
prepare.storage:
|
||||||
@echo "Adding self-signed tls certs to trusted store"
|
@echo "Adding self-signed TLS certs to trusted store"
|
||||||
@./bin/addCert.sh
|
@./bin/addCert.sh
|
||||||
|
|
Loading…
Reference in a new issue