forked from TrueCloudLab/frostfs-testlib
[#119] Renamed Github to Gitea in links
Some links changed to git.frostfs from github Signed-off-by: Mikhail Kadilov <m.kadilov@yadro.com>
This commit is contained in:
parent
61a1b28652
commit
22647c6d59
6 changed files with 13 additions and 13 deletions
|
@ -3,8 +3,8 @@
|
||||||
First, thank you for contributing! We love and encourage pull requests from
|
First, thank you for contributing! We love and encourage pull requests from
|
||||||
everyone. Please follow the guidelines:
|
everyone. Please follow the guidelines:
|
||||||
|
|
||||||
- Check the open [issues](https://github.com/TrueCloudLab/frostfs-testlib/issues) and
|
- Check the open [issues](https://git.frostfs.info/TrueCloudLab/frostfs-testlib/issues) and
|
||||||
[pull requests](https://github.com/TrueCloudLab/frostfs-testlib/pulls) for existing
|
[pull requests](https://git.frostfs.info/TrueCloudLab/frostfs-testlib/pulls) for existing
|
||||||
discussions.
|
discussions.
|
||||||
|
|
||||||
- Open an issue first, to discuss a new feature or enhancement.
|
- Open an issue first, to discuss a new feature or enhancement.
|
||||||
|
@ -26,8 +26,8 @@ Start by forking the `frostfs-testlib` repository, make changes in a branch and
|
||||||
send a pull request. We encourage pull requests to discuss code changes. Here
|
send a pull request. We encourage pull requests to discuss code changes. Here
|
||||||
are the steps in details:
|
are the steps in details:
|
||||||
|
|
||||||
### Set up your GitHub Repository
|
### Set up your Git Repository
|
||||||
Fork [FrostFS testlib upstream](https://github.com/TrueCloudLab/frostfs-testlib/fork) source
|
Fork [FrostFS testlib upstream](https://git.frostfs.info/TrueCloudLab/frostfs-testlib/forks) source
|
||||||
repository to your own personal repository. Copy the URL of your fork and clone it:
|
repository to your own personal repository. Copy the URL of your fork and clone it:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
@ -37,7 +37,7 @@ $ git clone <url of your fork>
|
||||||
### Set up git remote as ``upstream``
|
### Set up git remote as ``upstream``
|
||||||
```shell
|
```shell
|
||||||
$ cd frostfs-testlib
|
$ cd frostfs-testlib
|
||||||
$ git remote add upstream https://github.com/TrueCloudLab/frostfs-testlib
|
$ git remote add upstream https://git.frostfs.info/TrueCloudLab/frostfs-testlib
|
||||||
$ git fetch upstream
|
$ git fetch upstream
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -99,8 +99,8 @@ $ git push origin feature/123-something_awesome
|
||||||
```
|
```
|
||||||
|
|
||||||
### Create a Pull Request
|
### Create a Pull Request
|
||||||
Pull requests can be created via GitHub. Refer to [this
|
Pull requests can be created via Git. Refer to [this
|
||||||
document](https://help.github.com/articles/creating-a-pull-request/) for
|
document](https://docs.codeberg.org/collaborating/pull-requests-and-git-flow/) for
|
||||||
detailed steps on how to create a pull request. After a Pull Request gets peer
|
detailed steps on how to create a pull request. After a Pull Request gets peer
|
||||||
reviewed and approved, it will be merged.
|
reviewed and approved, it will be merged.
|
||||||
|
|
||||||
|
|
|
@ -92,4 +92,4 @@ The library provides the following primary components:
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
Any contributions to the library should conform to the [contribution guideline](https://github.com/TrueCloudLab/frostfs-testlib/blob/master/CONTRIBUTING.md).
|
Any contributions to the library should conform to the [contribution guideline](https://git.frostfs.info/TrueCloudLab/frostfs-testlib/src/branch/master/CONTRIBUTING.md).
|
||||||
|
|
|
@ -36,7 +36,7 @@ requires-python = ">=3.10"
|
||||||
dev = ["black", "bumpver", "isort", "pre-commit"]
|
dev = ["black", "bumpver", "isort", "pre-commit"]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://github.com/TrueCloudLab/frostfs-testlib"
|
Homepage = "https://git.frostfs.info/TrueCloudLab/frostfs-testlib"
|
||||||
|
|
||||||
[project.entry-points."frostfs.testlib.reporter"]
|
[project.entry-points."frostfs.testlib.reporter"]
|
||||||
allure = "frostfs_testlib.reporter.allure_handler:AllureHandler"
|
allure = "frostfs_testlib.reporter.allure_handler:AllureHandler"
|
||||||
|
|
|
@ -219,7 +219,7 @@ class FrostfsAdmMorph(CliCommand):
|
||||||
container_alias_fee: Container alias fee (default 500).
|
container_alias_fee: Container alias fee (default 500).
|
||||||
container_fee: Container registration fee (default 1000).
|
container_fee: Container registration fee (default 1000).
|
||||||
contracts: Path to archive with compiled FrostFS contracts
|
contracts: Path to archive with compiled FrostFS contracts
|
||||||
(default fetched from latest github release).
|
(default fetched from latest git release).
|
||||||
epoch_duration: Amount of side chain blocks in one FrostFS epoch (default 240).
|
epoch_duration: Amount of side chain blocks in one FrostFS epoch (default 240).
|
||||||
homomorphic_disabled: Disable object homomorphic hashing.
|
homomorphic_disabled: Disable object homomorphic hashing.
|
||||||
local_dump: Path to the blocks dump file.
|
local_dump: Path to the blocks dump file.
|
||||||
|
@ -340,7 +340,7 @@ class FrostfsAdmMorph(CliCommand):
|
||||||
Args:
|
Args:
|
||||||
alphabet_wallets: Path to alphabet wallets dir.
|
alphabet_wallets: Path to alphabet wallets dir.
|
||||||
contracts: Path to archive with compiled FrostFS contracts
|
contracts: Path to archive with compiled FrostFS contracts
|
||||||
(default fetched from latest github release).
|
(default fetched from latest git release).
|
||||||
rpc_endpoint: N3 RPC node endpoint.
|
rpc_endpoint: N3 RPC node endpoint.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
|
@ -22,7 +22,7 @@ class FrostfsCliACL(CliCommand):
|
||||||
Well-known system object headers start with '$Object:' prefix.
|
Well-known system object headers start with '$Object:' prefix.
|
||||||
User defined headers start without prefix.
|
User defined headers start without prefix.
|
||||||
Read more about filter keys at:
|
Read more about filter keys at:
|
||||||
http://github.com/TrueCloudLab/frostfs-api/blob/master/proto-docs/acl.md#message-eaclrecordfilter
|
https://git.frostfs.info/TrueCloudLab/frostfs-api/src/branch/master/proto-docs/acl.md#message-eaclrecord-filter
|
||||||
Match is '=' for matching and '!=' for non-matching filter.
|
Match is '=' for matching and '!=' for non-matching filter.
|
||||||
Value is a valid unicode string corresponding to object or request header value.
|
Value is a valid unicode string corresponding to object or request header value.
|
||||||
|
|
||||||
|
|
|
@ -169,7 +169,7 @@ def include_node_to_network_map(
|
||||||
storage_node_set_status(node_to_include, status="online")
|
storage_node_set_status(node_to_include, status="online")
|
||||||
|
|
||||||
# Per suggestion of @fyrchik we need to wait for 2 blocks after we set status and after tick epoch.
|
# Per suggestion of @fyrchik we need to wait for 2 blocks after we set status and after tick epoch.
|
||||||
# First sleep can be omitted after https://github.com/TrueCloudLab/frostfs-node/issues/60 complete.
|
# First sleep can be omitted after https://git.frostfs.info/TrueCloudLab/frostfs-node/issues/60 complete.
|
||||||
|
|
||||||
time.sleep(datetime_utils.parse_time(MORPH_BLOCK_TIME) * 2)
|
time.sleep(datetime_utils.parse_time(MORPH_BLOCK_TIME) * 2)
|
||||||
tick_epoch(shell, cluster)
|
tick_epoch(shell, cluster)
|
||||||
|
|
Loading…
Reference in a new issue