All checks were successful
DCO action / DCO (pull_request) Successful in 37s
Vulncheck / Vulncheck (pull_request) Successful in 52s
Tests and linters / Run gofumpt (pull_request) Successful in 1m19s
Build / Build Components (pull_request) Successful in 1m29s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m40s
Tests and linters / Staticcheck (pull_request) Successful in 2m12s
Tests and linters / Lint (pull_request) Successful in 3m2s
Tests and linters / Tests (pull_request) Successful in 4m42s
Tests and linters / Tests with -race (pull_request) Successful in 5m0s
Tests and linters / gopls check (pull_request) Successful in 5m19s
Vulncheck / Vulncheck (push) Successful in 59s
Tests and linters / Run gofumpt (push) Successful in 1m25s
Pre-commit hooks / Pre-commit (push) Successful in 1m33s
Build / Build Components (push) Successful in 2m4s
Tests and linters / Staticcheck (push) Successful in 2m22s
Tests and linters / Lint (push) Successful in 3m17s
OCI image / Build container images (push) Successful in 4m16s
Tests and linters / Tests (push) Successful in 4m45s
Tests and linters / gopls check (push) Successful in 5m35s
Tests and linters / Tests with -race (push) Successful in 5m38s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
50 lines
1.9 KiB
Go
50 lines
1.9 KiB
Go
package commonflags
|
|
|
|
const (
|
|
ConfigFlag = "config"
|
|
ConfigFlagShorthand = "c"
|
|
ConfigFlagUsage = "Config file"
|
|
|
|
ConfigDirFlag = "config-dir"
|
|
ConfigDirFlagUsage = "Config directory"
|
|
|
|
Verbose = "verbose"
|
|
VerboseShorthand = "v"
|
|
VerboseUsage = "Verbose output"
|
|
|
|
EndpointFlag = "rpc-endpoint"
|
|
EndpointFlagDesc = "N3 RPC node endpoint"
|
|
EndpointFlagShort = "r"
|
|
|
|
WalletPath = "wallet"
|
|
WalletPathShorthand = "w"
|
|
WalletPathUsage = "Path to the wallet"
|
|
|
|
AlphabetWalletsFlag = "alphabet-wallets"
|
|
AlphabetWalletsFlagDesc = "Path to alphabet wallets dir"
|
|
|
|
AdminWalletPath = "wallet-admin"
|
|
AdminWalletUsage = "Path to the admin wallet"
|
|
|
|
LocalDumpFlag = "local-dump"
|
|
ProtoConfigPath = "protocol"
|
|
ContractsInitFlag = "contracts"
|
|
ContractsInitFlagDesc = "Path to archive with compiled FrostFS contracts (the default is to fetch the latest release from the official repository)"
|
|
ContractsURLFlag = "contracts-url"
|
|
ContractsURLFlagDesc = "URL to archive with compiled FrostFS contracts"
|
|
EpochDurationInitFlag = "network.epoch_duration"
|
|
MaxObjectSizeInitFlag = "network.max_object_size"
|
|
MaxECDataCountFlag = "network.max_ec_data_count"
|
|
MaxECParityCounFlag = "network.max_ec_parity_count"
|
|
RefillGasAmountFlag = "gas"
|
|
StorageWalletFlag = "storage-wallet"
|
|
ContainerFeeInitFlag = "network.fee.container"
|
|
ContainerAliasFeeInitFlag = "network.fee.container_alias"
|
|
CandidateFeeInitFlag = "network.fee.candidate"
|
|
WithdrawFeeInitFlag = "network.fee.withdraw"
|
|
MaintenanceModeAllowedInitFlag = "network.maintenance_mode_allowed"
|
|
HomomorphicHashDisabledInitFlag = "network.homomorphic_hash_disabled"
|
|
CustomZoneFlag = "domain"
|
|
AlphabetSizeFlag = "size"
|
|
AllFlag = "all"
|
|
)
|