Skip to content

Commit

Permalink
feat(poketwo): add redis
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Jul 15, 2024
1 parent 936fb15 commit 0a6a1f6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions kubernetes/poketwo/redis.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ transpire, ... }:

{
namespaces.poketwo = {
helmReleases.redis = {
chart = transpire.fetchFromHelm {
repo = "https://charts.bitnami.com/bitnami";
name = "redis";
version = "19.6.1";
sha256 = "z7M/oHv2x9LVaMaPXk5KfYYqZs7m7+PmLxnKjL0Thxs=";
};

values = {
architecture = "standalone";
usePassword = true;
master = {
persistence.size = "32Gi";
resources = {
requests = { memory = "5Gi"; };
limits = { memory = "5Gi"; cpu = "200m"; };
};
};
metrics.enabled = true;
};
};
};
}

0 comments on commit 0a6a1f6

Please sign in to comment.