-
Notifications
You must be signed in to change notification settings - Fork 6
Update silta.yml #721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Update silta.yml #721
Conversation
Setting enableServiceLinks: false by default due to performance issues on namespaces with lot of environment values.
Setting enableServiceLinks: false by default due to performance issues on namespaces with lot of environment values.
removed redis configuration settings. was in the wrong place
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When testing this the redis container still has enableServiceLinks as true. Please check.
My test deployment based on this branch: https://app.circleci.com/pipelines/github/wunderio/drupal-project-k8s/6484/workflows/1c221078-5875-4936-bf27-926168d20a9e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the settings in the drupal Helm chart values file to disable service links by default for performance optimization on namespaces with many environment values.
- Added "enableServiceLinks: false" under the replica, master, and sentinel redis configuration sections.
| # mandatory value | ||
| password: "" | ||
| replica: | ||
| enableServiceLinks: false |
Copilot
AI
May 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are trailing whitespace characters on this line. It is recommended to remove extra spaces to maintain consistency.
| enableServiceLinks: false | |
| enableServiceLinks: false |
| autoscaling: | ||
| enabled: false | ||
| master: | ||
| enableServiceLinks: false |
Copilot
AI
May 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are trailing whitespace characters on this line. Removing the extra spaces can help ensure a cleaner YAML format.
| enableServiceLinks: false | |
| enableServiceLinks: false |
| memory: 256Mi | ||
| memory: 256Mi | ||
| sentinel: | ||
| enableServiceLinks: false |
Copilot
AI
May 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is trailing whitespace on this line as well. It is suggested to clean up the extra space for consistency.
| enableServiceLinks: false | |
| enableServiceLinks: false |
Setting enableServiceLinks: false by default due to performance issues on namespaces with lot of environment values.