forked from TrueCloudLab/frostfs-dev-env
40 lines
1.9 KiB
Makefile
40 lines
1.9 KiB
Makefile
# Update epoch duration in side chain blocks (make update.epoch_duration val=30)
|
|
update.epoch_duration:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config EpochDuration=$(val)
|
|
|
|
# Update max object size in bytes (make update.max_object_size val=1000)
|
|
update.max_object_size:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config MaxObjectSize=$(val)
|
|
|
|
# Update audit fee per result in fixed 12 (make update.audit_fee val=100)
|
|
update.audit_fee:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config AuditFee=$(val)
|
|
|
|
# Update container fee per alphabet node in fixed 12 (make update.container_fee val=500)
|
|
update.container_fee:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config ContainerFee=$(val)
|
|
|
|
# Update container alias fee per alphabet node in fixed 12 (make update.container_alias_fee val=100)
|
|
update.container_alias_fee:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config ContainerAliasFee=$(val)
|
|
|
|
# Update amount of EigenTrust iterations (make update.eigen_trust_iterations val=2)
|
|
update.eigen_trust_iterations:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config EigenTrustIterations=$(val)
|
|
|
|
# Update system dns to resolve container names (make update.system_dns val=container)
|
|
update.system_dns:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config SystemDNS=$(val) --force
|
|
|
|
# Update alpha parameter of EigenTrust algorithm in 0 <= f <= 1.0 (make update.eigen_trust_alpha val=0.2)
|
|
update.eigen_trust_alpha:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config EigenTrustAlpha=$(val)
|
|
|
|
# Update basic income rate in fixed 12 (make update.basic_income_rate val=1000)
|
|
update.basic_income_rate:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config BasicIncomeRate=$(val)
|
|
|
|
# Update homomorphic hashing disabled flag (make update.homomorphic_hashing_disable val=true)
|
|
update.homomorphic_hashing_disable:
|
|
@./vendor/frostfs-adm -c ./frostfs-adm.yml morph set-config HomomorphicHashingDisabled=$(val)
|
|
|