From ea2e36a7474373013454c499ff767f6edd884f66 Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:28:12 +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 8feafebe3..7ef3011b0 100644 --- a/silta/silta.yml +++ b/silta/silta.yml @@ -15,6 +15,9 @@ memcached: 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 58130d804e83cffa9d187db532d8f698305196f6 Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:50:05 +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/drupal/values.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/drupal/values.yaml b/charts/drupal/values.yaml index bf6cb1bf7..19224b254 100644 --- a/charts/drupal/values.yaml +++ b/charts/drupal/values.yaml @@ -702,17 +702,21 @@ redis: # mandatory value password: "" replica: + enableServiceLinks: false # replicaCount: 1 autoscaling: enabled: false master: + enableServiceLinks: false resources: limits: cpu: 250m memory: 512Mi requests: cpu: 50m - memory: 256Mi + memory: 256Mi + sentinel: + enableServiceLinks: false # Mailhog service overrides # see: https://github.com/codecentric/helm-charts/blob/master/charts/mailhog/values.yaml From 196d3c2ac34228d4200c2fb119b333b72f54bab6 Mon Sep 17 00:00:00 2001 From: Peeter Pratka <1741412+evilfurryone@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:50:52 +0300 Subject: [PATCH 3/3] Update silta.yml removed redis configuration settings. was in the wrong place --- silta/silta.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/silta/silta.yml b/silta/silta.yml index 7ef3011b0..8feafebe3 100644 --- a/silta/silta.yml +++ b/silta/silta.yml @@ -15,9 +15,6 @@ memcached: 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"