├── .basic_services ├── .bootstrap_services ├── .dockerignore ├── .editorconfig ├── .env ├── .github ├── CODEOWNERS ├── logo.svg └── workflows │ └── dco.yml ├── .gitignore ├── .int_test.env ├── .services ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bin ├── addCert.sh ├── config.sh ├── helper.sh ├── passwd.exp ├── resolve.sh └── tick.sh ├── docs ├── basenet.md ├── faq.md ├── http_gate.md ├── ir.md ├── macos.md ├── morph.md ├── notary.md ├── rest_gate.md ├── s3_gate.md └── storage.md ├── frostfs-adm.yml ├── frostfs_config.mk ├── help.mk ├── services ├── basenet │ ├── .env │ ├── .hosts │ ├── .int_test.env │ └── docker-compose.yml ├── http_gate │ ├── .env │ ├── .hosts │ ├── .http.env │ ├── .int_test.env │ ├── cfg │ │ └── config.yml │ ├── docker-compose.yml │ ├── node.key │ └── wallet.json ├── ir │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── .ir.env │ ├── artifacts.mk │ ├── az.json │ ├── az.key │ ├── cfg │ │ └── config.yml │ ├── contract.json │ ├── docker-compose.yml │ ├── healthcheck.sh │ └── prepare.mk ├── morph_chain │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── artifacts.mk │ ├── config.yml │ ├── docker-compose.yml │ ├── node-wallet.json │ └── protocol.privnet.yml ├── nats │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── artifacts.mk │ ├── docker-compose.yml │ ├── generate_cert.sh │ └── nats.conf ├── rest_gate │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── cfg │ │ └── config.yml │ ├── docker-compose.yml │ └── wallet.json ├── s3_gate │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── .s3.env │ ├── cfg │ │ └── config.yml │ ├── docker-compose.yml │ ├── tls.crt │ ├── tls.key │ └── wallet.json └── storage │ ├── .env │ ├── .hosts │ ├── .int_test.env │ ├── .storage.env │ ├── artifacts.mk │ ├── cfg │ └── config.yml │ ├── cli-cfg.yml │ ├── docker-compose.yml │ ├── generate_cert.sh │ ├── healthcheck.sh │ ├── prepare.mk │ ├── wallet01.json │ ├── wallet02.json │ ├── wallet03.json │ └── wallet04.json └── wallets ├── wallet.json └── wallet.key /.basic_services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.basic_services -------------------------------------------------------------------------------- /.bootstrap_services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.bootstrap_services -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .docker 2 | .github 3 | vendor 4 | tmp 5 | .secrets 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.env -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.github/logo.svg -------------------------------------------------------------------------------- /.github/workflows/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.github/workflows/dco.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.int_test.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/.services -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/README.md -------------------------------------------------------------------------------- /bin/addCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/addCert.sh -------------------------------------------------------------------------------- /bin/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/config.sh -------------------------------------------------------------------------------- /bin/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/helper.sh -------------------------------------------------------------------------------- /bin/passwd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/passwd.exp -------------------------------------------------------------------------------- /bin/resolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/resolve.sh -------------------------------------------------------------------------------- /bin/tick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/bin/tick.sh -------------------------------------------------------------------------------- /docs/basenet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/basenet.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/http_gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/http_gate.md -------------------------------------------------------------------------------- /docs/ir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/ir.md -------------------------------------------------------------------------------- /docs/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/macos.md -------------------------------------------------------------------------------- /docs/morph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/morph.md -------------------------------------------------------------------------------- /docs/notary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/notary.md -------------------------------------------------------------------------------- /docs/rest_gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/rest_gate.md -------------------------------------------------------------------------------- /docs/s3_gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/s3_gate.md -------------------------------------------------------------------------------- /docs/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/docs/storage.md -------------------------------------------------------------------------------- /frostfs-adm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/frostfs-adm.yml -------------------------------------------------------------------------------- /frostfs_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/frostfs_config.mk -------------------------------------------------------------------------------- /help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/help.mk -------------------------------------------------------------------------------- /services/basenet/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/basenet/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.10 bastion.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/basenet/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/basenet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/basenet/docker-compose.yml -------------------------------------------------------------------------------- /services/http_gate/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/http_gate/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.81 http.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/http_gate/.http.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/http_gate/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/http_gate/cfg/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/http_gate/cfg/config.yml -------------------------------------------------------------------------------- /services/http_gate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/http_gate/docker-compose.yml -------------------------------------------------------------------------------- /services/http_gate/node.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/http_gate/node.key -------------------------------------------------------------------------------- /services/http_gate/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/http_gate/wallet.json -------------------------------------------------------------------------------- /services/ir/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/ir/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.61 ir01.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/ir/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/ir/.ir.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/.ir.env -------------------------------------------------------------------------------- /services/ir/artifacts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/artifacts.mk -------------------------------------------------------------------------------- /services/ir/az.json: -------------------------------------------------------------------------------- 1 | ../morph_chain/node-wallet.json -------------------------------------------------------------------------------- /services/ir/az.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/az.key -------------------------------------------------------------------------------- /services/ir/cfg/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/cfg/config.yml -------------------------------------------------------------------------------- /services/ir/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/contract.json -------------------------------------------------------------------------------- /services/ir/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/docker-compose.yml -------------------------------------------------------------------------------- /services/ir/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/healthcheck.sh -------------------------------------------------------------------------------- /services/ir/prepare.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/ir/prepare.mk -------------------------------------------------------------------------------- /services/morph_chain/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/morph_chain/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.90 morph-chain.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/morph_chain/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/morph_chain/artifacts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/morph_chain/artifacts.mk -------------------------------------------------------------------------------- /services/morph_chain/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/morph_chain/config.yml -------------------------------------------------------------------------------- /services/morph_chain/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/morph_chain/docker-compose.yml -------------------------------------------------------------------------------- /services/morph_chain/node-wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/morph_chain/node-wallet.json -------------------------------------------------------------------------------- /services/morph_chain/protocol.privnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/morph_chain/protocol.privnet.yml -------------------------------------------------------------------------------- /services/nats/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/nats/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.101 nats.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/nats/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/nats/artifacts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/nats/artifacts.mk -------------------------------------------------------------------------------- /services/nats/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/nats/docker-compose.yml -------------------------------------------------------------------------------- /services/nats/generate_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/nats/generate_cert.sh -------------------------------------------------------------------------------- /services/nats/nats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/nats/nats.conf -------------------------------------------------------------------------------- /services/rest_gate/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/rest_gate/.hosts: -------------------------------------------------------------------------------- 1 | IPV4_PREFIX.83 rest.LOCAL_DOMAIN 2 | -------------------------------------------------------------------------------- /services/rest_gate/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/rest_gate/cfg/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/rest_gate/cfg/config.yml -------------------------------------------------------------------------------- /services/rest_gate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/rest_gate/docker-compose.yml -------------------------------------------------------------------------------- /services/rest_gate/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/rest_gate/wallet.json -------------------------------------------------------------------------------- /services/s3_gate/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/s3_gate/.hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/.hosts -------------------------------------------------------------------------------- /services/s3_gate/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/s3_gate/.s3.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/s3_gate/cfg/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/cfg/config.yml -------------------------------------------------------------------------------- /services/s3_gate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/docker-compose.yml -------------------------------------------------------------------------------- /services/s3_gate/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/tls.crt -------------------------------------------------------------------------------- /services/s3_gate/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/tls.key -------------------------------------------------------------------------------- /services/s3_gate/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/s3_gate/wallet.json -------------------------------------------------------------------------------- /services/storage/.env: -------------------------------------------------------------------------------- 1 | ../../.env -------------------------------------------------------------------------------- /services/storage/.hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/.hosts -------------------------------------------------------------------------------- /services/storage/.int_test.env: -------------------------------------------------------------------------------- 1 | ../../.int_test.env -------------------------------------------------------------------------------- /services/storage/.storage.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/storage/artifacts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/artifacts.mk -------------------------------------------------------------------------------- /services/storage/cfg/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/cfg/config.yml -------------------------------------------------------------------------------- /services/storage/cli-cfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/cli-cfg.yml -------------------------------------------------------------------------------- /services/storage/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/docker-compose.yml -------------------------------------------------------------------------------- /services/storage/generate_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/generate_cert.sh -------------------------------------------------------------------------------- /services/storage/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/healthcheck.sh -------------------------------------------------------------------------------- /services/storage/prepare.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/prepare.mk -------------------------------------------------------------------------------- /services/storage/wallet01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/wallet01.json -------------------------------------------------------------------------------- /services/storage/wallet02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/wallet02.json -------------------------------------------------------------------------------- /services/storage/wallet03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/wallet03.json -------------------------------------------------------------------------------- /services/storage/wallet04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/services/storage/wallet04.json -------------------------------------------------------------------------------- /wallets/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/wallets/wallet.json -------------------------------------------------------------------------------- /wallets/wallet.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-dev-env/HEAD/wallets/wallet.key --------------------------------------------------------------------------------