Skip to content

Commit

Permalink
chore: tweak replicas count for services
Browse files Browse the repository at this point in the history
  • Loading branch information
gytis-ivaskevicius committed Jul 16, 2024
1 parent 54a6b2d commit 5c00b86
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions nix/cardano-services/deployments/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -336,15 +336,19 @@ in
providers = {
backend = {
enabled = true;
replicas = 3;
replicas = 2;
};
stake-pool-provider = {
enabled = true;
env.OVERRIDE_FUZZY_OPTIONS = "true";
};
handle-provider.enabled = true;
# asset-provider.enabled = true;
chain-history-provider.enabled = true;
chain-history-provider = {
enabled = true;
replicas = 2;
env.NODE_ENV = "production";
};
};

projectors = {
Expand Down Expand Up @@ -500,7 +504,7 @@ in
providers = {
backend = {
enabled = true;
replicas = 3;
replicas = 2;
env.NODE_ENV = "production";
};
stake-pool-provider = {
Expand All @@ -509,7 +513,11 @@ in
env.NODE_ENV = "production";
};
handle-provider.enabled = true;
chain-history-provider.enabled = true;
chain-history-provider = {
enabled = true;
replicas = 2;
env.NODE_ENV = "production";
};
# asset-provider = {
# enabled = true;
# env.NODE_ENV = "production";
Expand Down Expand Up @@ -572,7 +580,7 @@ in
providers = {
backend = {
enabled = true;
replicas = 3;
replicas = 2;
env.NODE_ENV = "production";
};
stake-pool-provider = {
Expand All @@ -581,7 +589,11 @@ in
env.NODE_ENV = "production";
};
handle-provider.enabled = true;
chain-history-provider.enabled = true;
chain-history-provider = {
enabled = true;
replicas = 2;
env.NODE_ENV = "production";
};
#asset-provider = {
# enabled = true;
# env.NODE_ENV = "production";
Expand Down

0 comments on commit 5c00b86

Please sign in to comment.