-
Notifications
You must be signed in to change notification settings - Fork 48
Update mixer deployment configuration #1906
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?
Changes from 1 commit
f7a1a8f
010915d
f6e419a
04ef31c
4cc78fa
ddd4047
e567cb1
7ea1f1f
c49e5db
babac98
c7972c8
2a45792
c8653af
498c7f9
c96be8a
d1449ac
1ab4435
e89ba27
7fd86ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -436,6 +436,7 @@ serviceGroups: | |
| resources: | ||
| memoryRequest: "8G" | ||
| memoryLimit: "8G" | ||
| cpuRequest: "100m" | ||
| cacheSVG: true | ||
| # If the name of the recon service is changed here, | ||
| # please also change the name in the deployment.yaml template. | ||
|
|
@@ -448,6 +449,7 @@ serviceGroups: | |
| resources: | ||
| memoryRequest: "2G" | ||
| memoryLimit: "2G" | ||
| cpuRequest: "100m" | ||
| observation: | ||
| urlPaths: | ||
| - "/bulk/stats" | ||
|
|
@@ -459,6 +461,8 @@ serviceGroups: | |
| resources: | ||
| memoryRequest: "4G" | ||
| memoryLimit: "8G" | ||
| cpuRequest: "1" | ||
| enableAntiAffinity: true | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pod anti-affinity is currently only enabled for the References
|
||
| node: | ||
| urlPaths: | ||
| - "/node/*" | ||
|
|
@@ -473,6 +477,7 @@ serviceGroups: | |
| resources: | ||
| memoryRequest: "8G" | ||
| memoryLimit: "8G" | ||
| cpuRequest: "500m" | ||
| cacheSVG: true | ||
| default: | ||
| urlPaths: | ||
|
|
@@ -481,3 +486,4 @@ serviceGroups: | |
| resources: | ||
| memoryRequest: "2G" | ||
| memoryLimit: "2G" | ||
| cpuRequest: "100m" | ||
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.
Hardcoding
maxSurgeto1removes the ability to customize the rollout strategy per service group and environment. This change ignores existing configurations such asmaxSurge: 0indeploy/helm_charts/envs/mixer_staging.yaml. Additionally, for large deployments (e.g., therecongroup with 90 replicas in production), amaxSurgeof 1 will significantly slow down the rollout process as it only creates one new pod at a time. It is recommended to use1as a default while still allowing overrides fromvalues.yaml.References