diff --git a/tools/cloud/akash/README.md b/tools/cloud/akash/README.md new file mode 100644 index 0000000000..0c69ebfbdf --- /dev/null +++ b/tools/cloud/akash/README.md @@ -0,0 +1,7 @@ +# DefraDB + +DefraDB is a user-centric database that prioritizes data ownership, personal privacy, and information security. Its data model, powered by the convergence of [MerkleCRDTs](https://arxiv.org/pdf/2004.00107.pdf) and the content-addressability of [IPLD](https://docs.ipld.io/), enables a multi-write-master architecture. It features [DQL](https://docs.source.network/references/query-specification/query-language-overview), a query language compatible with GraphQL but providing extra convenience. By leveraging peer-to-peer networking it can be deployed nimbly in novel topologies. Access control is determined by a relationship-based DSL, supporting document or field-level policies, secured by the SourceHub network. DefraDB is a core part of the [Source technologies](https://source.network/) that enable new paradigms of decentralized data and access-control management, user-centric apps, data trustworthiness, and much more. + +Read the documentation on [docs.source.network](https://docs.source.network/). + +View the source code on [GitHub](https://github.com/sourcenetwork/defradb). diff --git a/tools/cloud/akash/deploy.yaml b/tools/cloud/akash/deploy.yaml new file mode 100644 index 0000000000..c6f7070f98 --- /dev/null +++ b/tools/cloud/akash/deploy.yaml @@ -0,0 +1,51 @@ +--- +version: "2.0" + +services: + defradb: + image: sourcenetwork/defradb:v0.6.0 + args: + - start + - --url=0.0.0.0:9181 + expose: + - port: 9161 + as: 9161 + to: + - global: true + - port: 9171 + as: 9171 + to: + - global: true + - port: 9181 + as: 80 + to: + - global: true + +profiles: + compute: + defradb: + resources: + cpu: + units: 1.0 + memory: + size: 1Gi + storage: + size: 1Gi + placement: + akash: + attributes: + host: akash + signedBy: + anyOf: + - "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63" + - "akash18qa2a2ltfyvkyj0ggj3hkvuj6twzyumuaru9s4" + pricing: + defradb: + denom: uakt + amount: 10000 + +deployment: + defradb: + akash: + profile: defradb + count: 1 \ No newline at end of file