Skip to content

Commit

Permalink
Adds Official Redis Deployment (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups authored Jun 27, 2022
1 parent c2ddaef commit d339a2e
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
4 changes: 4 additions & 0 deletions redis/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Redis
=======
Redis is an in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.
More details [https://redis.io/](https://redis.io/)
43 changes: 43 additions & 0 deletions redis/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
version: "2.0"

services:
redis:
image: redis:latest
env:
- REDIS_AOF_ENABLED=no
- ALLOW_EMPTY_PASSWORD=no
- REDIS_PASSWORD=rootpassword
expose:
- port: 6379
to:
- global: true

profiles:
compute:
redis:
resources:
cpu:
units: 1.0
memory:
size: 1Gi
storage:
size: 1Gi
placement:
akash:
attributes:
host: akash
signedBy:
anyOf:
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63"
pricing:
redis:
denom: uakt
amount: 100


deployment:
redis:
akash:
profile: redis
count: 1

0 comments on commit d339a2e

Please sign in to comment.