From fc59047d5b820e107eeb126d883ba1dee6d99dac Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:31:06 +0300 Subject: [PATCH 1/3] Update silta.yml Setting enableServiceLinks: false by default due to performance issues on namespaces with lot of environment values. --- silta/silta.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/silta/silta.yml b/silta/silta.yml index f7e476f..07600dd 100644 --- a/silta/silta.yml +++ b/silta/silta.yml @@ -75,6 +75,9 @@ varnish: redis: enabled: false +#Setting the value false by default as it is causing slowdown on namespaces with lot of environment variables. + master: + enableServiceLinks: false auth: password: "foo" From b392e6e4b3b016bb4f40101a99fe1c46ef273295 Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:45:49 +0300 Subject: [PATCH 2/3] Update values.yaml Setting enableServiceLinks: false by default due to performance issues on namespaces with lot of environment values. --- charts/frontend/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/frontend/values.yaml b/charts/frontend/values.yaml index 4fb904e..0187ef9 100644 --- a/charts/frontend/values.yaml +++ b/charts/frontend/values.yaml @@ -568,6 +568,7 @@ redis: autoscaling: enabled: false master: + enableServiceLinks: false resources: limits: cpu: 250m @@ -575,4 +576,7 @@ redis: requests: cpu: 50m memory: 256Mi - + replica: + enableServiceLinks: false + sentinel: + enableServiceLinks: false From 846c923729652268ff291570e9b72eb8ec793a50 Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:47:08 +0300 Subject: [PATCH 3/3] Update silta.yml I had put the redis changes to wrong config file. --- silta/silta.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/silta/silta.yml b/silta/silta.yml index 07600dd..f7e476f 100644 --- a/silta/silta.yml +++ b/silta/silta.yml @@ -75,9 +75,6 @@ varnish: redis: enabled: false -#Setting the value false by default as it is causing slowdown on namespaces with lot of environment variables. - master: - enableServiceLinks: false auth: password: "foo"