forked from TrueCloudLab/frostfs-dev-env
[#241] s3: Provide common params with .yml
file
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
parent
b5fb2a9543
commit
1659a76b5d
3 changed files with 33 additions and 14 deletions
|
@ -1,10 +0,0 @@
|
|||
S3_GW_REBALANCE_INTERVAL=30s
|
||||
S3_GW_HEALTHCHECK_TIMEOUT=15s
|
||||
S3_GW_CONNECT_TIMEOUT=10s
|
||||
|
||||
S3_GW_LOGGER_LEVEL=debug
|
||||
|
||||
S3_GW_MAX_CLIENTS_COUNT=100
|
||||
S3_GW_MAX_CLIENTS_DEADLINE=30s
|
||||
|
||||
S3_GW_RESOLVE_ORDER=nns
|
31
services/s3_gate/cfg/config.yml
Normal file
31
services/s3_gate/cfg/config.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
logger:
|
||||
level: debug
|
||||
|
||||
# Interval to check node health
|
||||
rebalance_interval: 30s
|
||||
|
||||
# Timeout to check node health during rebalance
|
||||
healthcheck_timeout: 15s
|
||||
|
||||
# Timeout to connect to a node
|
||||
connect_timeout: 10s
|
||||
|
||||
# Limits for processing of clients' requests
|
||||
max_clients_count: 100
|
||||
|
||||
# Deadline after which the gate sends error `RequestTimeout` to a client
|
||||
max_clients_deadline: 30s
|
||||
|
||||
resolve_order:
|
||||
- nns
|
||||
|
||||
server:
|
||||
- tls:
|
||||
enabled: true
|
||||
cert_file: /tls.crt
|
||||
key_file: /tls.key
|
||||
|
||||
# Wallet configuration
|
||||
wallet:
|
||||
path: /wallet.json # Path to wallet
|
||||
passphrase: "s3" # Passphrase to decrypt wallet
|
|
@ -17,14 +17,12 @@ services:
|
|||
- ./tls.key:/tls.key
|
||||
- ./tls.crt:/tls.crt
|
||||
- ./../../vendor/hosts:/etc/hosts
|
||||
- ./cfg:/etc/frostfs/s3
|
||||
stop_signal: SIGKILL
|
||||
env_file: [ ".env", ".s3.env", ".int_test.env" ]
|
||||
command: [ "frostfs-s3-gw", "--config", "/etc/frostfs/s3/config.yml" ]
|
||||
environment:
|
||||
- S3_GW_WALLET_PATH=/wallet.json
|
||||
- S3_GW_WALLET_PASSPHRASE=s3
|
||||
- S3_GW_RPC_ENDPOINT=http://morph-chain.${LOCAL_DOMAIN}:30333
|
||||
- S3_GW_SERVER_0_TLS_KEY_FILE=/tls.key
|
||||
- S3_GW_SERVER_0_TLS_CERT_FILE=/tls.crt
|
||||
- S3_GW_SERVER_0_ADDRESS=s3.${LOCAL_DOMAIN}:8080
|
||||
- S3_GW_LISTEN_DOMAINS=s3.${LOCAL_DOMAIN}
|
||||
- S3_GW_TREE_SERVICE=s01.${LOCAL_DOMAIN}:8080
|
||||
|
|
Loading…
Reference in a new issue